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

  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.h 85 double dateToDaysFrom1970(int year, int month, int day);
98 using WTF::dateToDaysFrom1970;
DateMath.cpp 321 double dateToDaysFrom1970(int year, int month, int day)
472 double day = dateToDaysFrom1970(equivalentYear, month, dayInMonth);
    [all...]
  /external/webkit/Source/WebCore/html/
DateComponents.cpp 659 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay;
662 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay + millisecondsSinceEpochForTime();
664 return dateToDaysFrom1970(m_year, m_month, 1) * msPerDay;
668 return (dateToDaysFrom1970(m_year, 0, 1) + offsetTo1stWeekStart(m_year) + (m_week - 1) * 7) * msPerDay;

Completed in 24 milliseconds