OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:msPerDay
(Results
1 - 10
of
10
) 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
494
ASSERT(msInDay >= 0 && msInDay <
msPerDay
);
531
setMillisecondsSinceMidnightInternal(positiveFmod(ms,
msPerDay
));
567
setMillisecondsSinceMidnightInternal(positiveFmod(round(ms),
msPerDay
));
643
return dateToDaysFrom1970(m_year, m_month, m_monthDay) *
msPerDay
;
646
return dateToDaysFrom1970(m_year, m_month, m_monthDay) *
msPerDay
+ millisecondsSinceEpochForTime();
648
return dateToDaysFrom1970(m_year, m_month, 1) *
msPerDay
;
652
return (dateToDaysFrom1970(m_year, 0, 1) + offsetTo1stWeekStart(m_year) + (m_week - 1) * 7) *
msPerDay
;
/external/v8/src/
macros.py
63
const
msPerDay
= 86400000;
date.js
86
return DaysInYear(year) *
msPerDay
;
116
var time = day *
msPerDay
+ time;
/external/chromium_org/v8/src/
macros.py
65
const
msPerDay
= 86400000;
date.js
82
return DaysInYear(year) *
msPerDay
;
112
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
182
DateTimeNumericFieldElement::Step step = createStep(msPerHour,
msPerDay
);
193
DateTimeNumericFieldElement::Step step = createStep(msPerHour,
msPerDay
);
358
const Decimal decimalMsPerDay(static_cast<int>(
msPerDay
));
Completed in 260 milliseconds