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

  /external/webkit/WebCore/css/
Pair.h 47 CSSPrimitiveValue* second() const { return m_second.get(); }
50 void setSecond(PassRefPtr<CSSPrimitiveValue> second) { m_second = second; }
53 Pair() : m_first(0), m_second(0) { }
55 : m_first(first), m_second(second) { }
58 RefPtr<CSSPrimitiveValue> m_second; member in class:WebCore::Pair
  /external/webkit/WebCore/html/
DateComponents.h 51 , m_second(0)
63 int second() const { return m_second; }
115 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
117 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
124 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
167 int m_second; member in class:WebCore::DateComponents
DateComponents.cpp 412 m_second = second;
466 m_second = static_cast<int>(fmod(value, secondsPerMinute));
605 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond;
641 else if (format == None && m_second)
651 return String::format("%02d:%02d:%02d", m_hour, m_minute, m_second);
653 return String::format("%02d:%02d:%02d.%03d", m_hour, m_minute, m_second, m_millisecond);

Completed in 1687 milliseconds