Chromium Code Reviews| Index: src/dateparser.h |
| =================================================================== |
| --- src/dateparser.h (revision 5890) |
| +++ src/dateparser.h (working copy) |
| @@ -87,6 +87,18 @@ |
| return n; |
| } |
| + // Read a string of digits, take the first three or fewer as an unsigned |
| + // number of milliseconds, and ignore any digits after the first three. |
| + int ReadMilliseconds() { |
| + has_read_number_ = true; |
| + int n = 0; |
| + int p; |
|
Lasse Reichstein
2010/11/26 08:01:28
Call it something readable, like "power" or "posit
|
| + for (p = 100; IsAsciiDigit(); Next(), p = p/10) { |
|
Lasse Reichstein
2010/11/26 08:01:28
Put spaces around the division operator.
|
| + n = n + p * (ch_ - '0'); |
| + } |
| + return n; |
| + } |
| + |
| // Read a word (sequence of chars. >= 'A'), fill the given buffer with a |
| // lower-case prefix, and pad any remainder of the buffer with zeroes. |
| // Return word length. |