HomeSort by relevance Sort by last modified time
    Searched refs:msPerDay (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.h 69 const double msPerDay = 24.0 * 60.0 * 60.0 * 1000.0;
93 using WTF::msPerDay;
DateMath.cpp 163 return floor(ms / msPerDay);
176 int approxYear = static_cast<int>(floor(ms / (msPerDay * 365.2425)) + 1970);
177 double msFromApproxYearTo1970 = msPerDay * daysFrom1970ToYear(approxYear);
180 if (msFromApproxYearTo1970 + msPerDay * daysInYear(approxYear) <= ms)
192 double result = fmod(ms, msPerDay);
194 result += msPerDay;
449 ms = (day * msPerDay) + msToMilliseconds(ms);
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.cpp 499 ASSERT(msInDay >= 0 && msInDay < msPerDay);
536 setMillisecondsSinceMidnightInternal(positiveFmod(ms, msPerDay));
572 setMillisecondsSinceMidnightInternal(positiveFmod(round(ms), msPerDay));
648 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay;
651 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay + millisecondsSinceEpochForTime();
653 return dateToDaysFrom1970(m_year, m_month, 1) * msPerDay;
657 return (dateToDaysFrom1970(m_year, 0, 1) + offsetTo1stWeekStart(m_year) + (m_week - 1) * 7) * msPerDay;
  /external/chromium_org/v8/src/
macros.py 65 const msPerDay = 86400000;
date.js 62 return DaysInYear(year) * msPerDay;
92 var time = day * msPerDay + time;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
LocaleWinTest.cpp 84 return dateToDaysFrom1970(year, month, day) * msPerDay;
LocaleMacTest.cpp 69 return dateToDaysFrom1970(year, month, day) * msPerDay;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeEditElement.cpp 183 DateTimeNumericFieldElement::Step step = createStep(msPerHour, msPerDay);
194 DateTimeNumericFieldElement::Step step = createStep(msPerHour, msPerDay);
359 const Decimal decimalMsPerDay(static_cast<int>(msPerDay));

Completed in 642 milliseconds