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

  /external/webkit/JavaScriptCore/wtf/
DateMath.h 80 double dateToDaysFrom1970(int year, int month, int day);
88 using WTF::dateToDaysFrom1970;
DateMath.cpp 313 double dateToDaysFrom1970(int year, int month, int day)
464 double day = dateToDaysFrom1970(equivalentYear, month, dayInMonth);
939 double day = dateToDaysFrom1970(t.year + 1900, t.month, t.monthDay);
  /external/webkit/WebCore/html/
DateComponents.cpp 612 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay;
615 return dateToDaysFrom1970(m_year, m_month, m_monthDay) * msPerDay + millisecondsSinceEpochForTime();
617 return dateToDaysFrom1970(m_year, m_month, 1) * msPerDay;
621 return (dateToDaysFrom1970(m_year, 0, 1) + offsetTo1stWeekStart(m_year) + (m_week - 1) * 7) * msPerDay;

Completed in 60 milliseconds