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

  /external/webkit/Source/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/Source/WebCore/html/
DateComponents.h 50 , m_second(0)
62 int second() const { return m_second; }
114 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
116 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
123 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
179 int m_second; member in class:WebCore::DateComponents
DateComponents.cpp 256 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, minute, m_second, m_millisecond))
272 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, hour, minute, m_second, m_millisecond))
280 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, hour, minute, m_second, m_millisecond))
455 m_second = second;
475 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
496 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
513 m_second = static_cast<int>(fmod(value, secondsPerMinute));
550 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
652 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond;
688 else if (format == None && m_second)
    [all...]

Completed in 43 milliseconds