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

Unified Diff: Source/wtf/DateMath.cpp

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/DateMath.h ('k') | Source/wtf/DecimalNumber.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/DateMath.cpp
diff --git a/Source/wtf/DateMath.cpp b/Source/wtf/DateMath.cpp
index 9eb23c79e7099e71442b6ffacabb8f6abd9abeca..b632763ce50a3fa035f998feadbfd4943c750c56 100644
--- a/Source/wtf/DateMath.cpp
+++ b/Source/wtf/DateMath.cpp
@@ -575,7 +575,7 @@ static char* parseES5DatePortion(const char* currentPosition, int& year, long& m
if (*postParsePosition != '-')
return postParsePosition;
currentPosition = postParsePosition + 1;
-
+
if (!isASCIIDigit(*currentPosition))
return 0;
if (!parseLong(currentPosition, &postParsePosition, 10, &month))
@@ -587,7 +587,7 @@ static char* parseES5DatePortion(const char* currentPosition, int& year, long& m
if (*postParsePosition != '-')
return postParsePosition;
currentPosition = postParsePosition + 1;
-
+
if (!isASCIIDigit(*currentPosition))
return 0;
if (!parseLong(currentPosition, &postParsePosition, 10, &day))
@@ -610,7 +610,7 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
if (*postParsePosition != ':' || (postParsePosition - currentPosition) != 2)
return 0;
currentPosition = postParsePosition + 1;
-
+
if (!isASCIIDigit(*currentPosition))
return 0;
if (!parseLong(currentPosition, &postParsePosition, 10, &minutes))
@@ -622,7 +622,7 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
// Seconds are optional.
if (*currentPosition == ':') {
++currentPosition;
-
+
long intSeconds;
if (!isASCIIDigit(*currentPosition))
return 0;
@@ -633,18 +633,18 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
seconds = intSeconds;
if (*postParsePosition == '.') {
currentPosition = postParsePosition + 1;
-
+
// In ECMA-262-5 it's a bit unclear if '.' can be present without milliseconds, but
// a reasonable interpretation guided by the given examples and RFC 3339 says "no".
// We check the next character to avoid reading +/- timezone hours after an invalid decimal.
if (!isASCIIDigit(*currentPosition))
return 0;
-
+
// We are more lenient than ES5 by accepting more or less than 3 fraction digits.
long fracSeconds;
if (!parseLong(currentPosition, &postParsePosition, 10, &fracSeconds))
return 0;
-
+
long numFracDigits = postParsePosition - currentPosition;
seconds += fracSeconds * pow(10.0, static_cast<double>(-numFracDigits));
}
@@ -662,11 +662,11 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
else
return currentPosition; // no timezone
++currentPosition;
-
+
long tzHours;
long tzHoursAbs;
long tzMinutes;
-
+
if (!isASCIIDigit(*currentPosition))
return 0;
if (!parseLong(currentPosition, &postParsePosition, 10, &tzHours))
@@ -675,7 +675,7 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
return 0;
tzHoursAbs = labs(tzHours);
currentPosition = postParsePosition + 1;
-
+
if (!isASCIIDigit(*currentPosition))
return 0;
if (!parseLong(currentPosition, &postParsePosition, 10, &tzMinutes))
@@ -683,12 +683,12 @@ static char* parseES5TimePortion(char* currentPosition, long& hours, long& minut
if ((postParsePosition - currentPosition) != 2)
return 0;
currentPosition = postParsePosition;
-
+
if (tzHoursAbs > 24)
return 0;
if (tzMinutes < 0 || tzMinutes > 59)
return 0;
-
+
timeZoneSeconds = 60 * (tzMinutes + (60 * tzHoursAbs));
if (tzNegative)
timeZoneSeconds = -timeZoneSeconds;
@@ -701,9 +701,9 @@ double parseES5DateFromNullTerminatedCharacters(const char* dateString)
// This parses a date of the form defined in ECMA-262-5, section 15.9.1.15
// (similar to RFC 3339 / ISO 8601: YYYY-MM-DDTHH:mm:ss[.sss]Z).
// In most cases it is intentionally strict (e.g. correct field widths, no stray whitespace).
-
+
static const long daysPerMonth[12] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
-
+
// The year must be present, but the other fields may be omitted - see ES5.1 15.9.1.15.
int year = 0;
long month = 1;
@@ -748,7 +748,7 @@ double parseES5DateFromNullTerminatedCharacters(const char* dateString)
// Discard leap seconds by clamping to the end of a minute.
seconds = 60;
}
-
+
double dateSeconds = ymdhmsToSeconds(year, month, day, hours, minutes, seconds) - timeZoneSeconds;
return dateSeconds * msPerSecond;
}
@@ -772,7 +772,7 @@ double parseDateFromNullTerminatedCharacters(const char* dateString, bool& haveT
// [Wednesday] January 09 23:12:40 GMT 1999
//
// We ignore the weekday.
-
+
// Skip leading space
skipSpacesAndComments(dateString);
@@ -960,7 +960,7 @@ double parseDateFromNullTerminatedCharacters(const char* dateString, bool& haveT
}
}
}
-
+
// The year may be after the time but before the time zone.
if (isASCIIDigit(*dateString) && year == -1) {
if (!parseInt(dateString, &newPosStr, 10, &year))
@@ -969,7 +969,7 @@ double parseDateFromNullTerminatedCharacters(const char* dateString, bool& haveT
skipSpacesAndComments(dateString);
}
- // Don't fail if the time zone is missing.
+ // Don't fail if the time zone is missing.
// Some websites omit the time zone (4275206).
if (*dateString) {
if (strncasecmp(dateString, "GMT", 3) == 0 || strncasecmp(dateString, "UTC", 3) == 0) {
@@ -1034,7 +1034,7 @@ double parseDateFromNullTerminatedCharacters(const char* dateString, bool& haveT
else
year += 1900;
}
-
+
return ymdhmsToSeconds(year, month + 1, day, hour, minute, second) * msPerSecond;
}
« no previous file with comments | « Source/wtf/DateMath.h ('k') | Source/wtf/DecimalNumber.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698