Searched defs:millisecond (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/extensions/
H A Dconvert_web_app_unittest.cc65 int second, int millisecond) {
73 exploded.millisecond = millisecond;
64 GetTestTime(int year, int month, int day, int hour, int minute, int second, int millisecond) argument
/external/v8/src/
H A Ddateparser.cc97 int& millisecond = comp_[3]; local
106 !IsSecond(second) || !IsMillisecond(millisecond)) return false;
111 output->set(MILLISECOND, Smi::FromInt(millisecond));
/external/webkit/Source/WebCore/html/
H A DDateComponents.h44 // * Time type: hour-minute-second-millisecond
45 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
61 int millisecond() const { return m_millisecond; } function in class:WebCore::DateComponents
71 None, // Suppress the second part and the millisecond part if they are 0.
72 Second, // Always show the second part, and suppress the millisecond part if it is 0.
73 Millisecond // Always show the second part and the millisecond part.
99 // Sets hour, minute, second and millisecond.
101 // Sets year, month, monthDay, hour, minute, second and millisecond.
103 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
H A DDateComponents.cpp169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond) argument
182 return !hour && !minute && !second && !millisecond;
287 // Parses a timezone part, and adjust year, month, monthDay, hour, minute, second, millisecond.
426 int millisecond = 0; local
440 ok = toInt(src, length, index, 1, millisecond);
441 millisecond *= 100;
443 ok = toInt(src, length, index, 2, millisecond);
444 millisecond *= 10;
446 ok = toInt(src, length, index, 3, millisecond);
456 m_millisecond = millisecond;
[all...]
/external/chromium/base/
H A Dtime.h80 // to the next full millisecond.
217 int millisecond; // Milliseconds within the current second (0-999) member in struct:base::Time::Exploded
464 // is hardware dependent and may or may not return sub-millisecond

Completed in 152 milliseconds