Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: Source/wtf/DateMath.h

Issue 29293002: Move DateMath weekdayName/monthName arrays to .rodata section (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) 2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * Copyright (C) 2010 Research In Motion Limited. All rights reserved. 5 * Copyright (C) 2010 Research In Motion Limited. All rights reserved.
6 * 6 *
7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
8 * 8 *
9 * The contents of this file are subject to the Mozilla Public License Version 9 * The contents of this file are subject to the Mozilla Public License Version
10 * 1.1 (the "License"); you may not use this file except in compliance with 10 * 1.1 (the "License"); you may not use this file except in compliance with
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 WTF_EXPORT double timeClip(double); 67 WTF_EXPORT double timeClip(double);
68 // dayOfWeek: [0, 6] 0 being Monday, day: [1, 31], month: [0, 11], year: ex: 201 1, hours: [0, 23], minutes: [0, 59], seconds: [0, 59], utcOffset: [-720,720]. 68 // dayOfWeek: [0, 6] 0 being Monday, day: [1, 31], month: [0, 11], year: ex: 201 1, hours: [0, 23], minutes: [0, 59], seconds: [0, 59], utcOffset: [-720,720].
69 WTF_EXPORT String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsign ed month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset); 69 WTF_EXPORT String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsign ed month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset);
70 70
71 inline double jsCurrentTime() 71 inline double jsCurrentTime()
72 { 72 {
73 // JavaScript doesn't recognize fractions of a millisecond. 73 // JavaScript doesn't recognize fractions of a millisecond.
74 return floor(WTF::currentTimeMS()); 74 return floor(WTF::currentTimeMS());
75 } 75 }
76 76
77 const char* const weekdayName[7] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", " Sun" }; 77 const char weekdayName[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
78 const char* const monthName[12] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "J ul", "Aug", "Sep", "Oct", "Nov", "Dec" }; 78 const char monthName[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
79 const char* const monthFullName[12] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; 79 const char* const monthFullName[12] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" };
80 80
81 const double hoursPerDay = 24.0; 81 const double hoursPerDay = 24.0;
82 const double minutesPerHour = 60.0; 82 const double minutesPerHour = 60.0;
83 const double secondsPerHour = 60.0 * 60.0; 83 const double secondsPerHour = 60.0 * 60.0;
84 const double secondsPerMinute = 60.0; 84 const double secondsPerMinute = 60.0;
85 const double msPerSecond = 1000.0; 85 const double msPerSecond = 1000.0;
86 const double msPerMinute = 60.0 * 1000.0; 86 const double msPerMinute = 60.0 * 1000.0;
87 const double msPerHour = 60.0 * 60.0 * 1000.0; 87 const double msPerHour = 60.0 * 60.0 * 1000.0;
88 const double msPerDay = 24.0 * 60.0 * 60.0 * 1000.0; 88 const double msPerDay = 24.0 * 60.0 * 60.0 * 1000.0;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 using WTF::msToDays; 121 using WTF::msToDays;
122 using WTF::msToMinutes; 122 using WTF::msToMinutes;
123 using WTF::msToHours; 123 using WTF::msToHours;
124 using WTF::secondsPerMinute; 124 using WTF::secondsPerMinute;
125 using WTF::parseDateFromNullTerminatedCharacters; 125 using WTF::parseDateFromNullTerminatedCharacters;
126 using WTF::makeRFC2822DateString; 126 using WTF::makeRFC2822DateString;
127 using WTF::calculateUTCOffset; 127 using WTF::calculateUTCOffset;
128 using WTF::calculateDSTOffset; 128 using WTF::calculateDSTOffset;
129 129
130 #endif // DateMath_h 130 #endif // DateMath_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698