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

  /external/chromium_org/third_party/WebKit/Source/core/css/
Pair.h 48 CSSPrimitiveValue* second() const { return m_second.get(); }
51 void setSecond(PassRefPtr<CSSPrimitiveValue> second) { m_second = second; }
59 bool equals(const Pair& other) const { return compareCSSValuePtr(m_first, other.m_first) && compareCSSValuePtr(m_second, other.m_second); }
70 Pair() : m_first(0), m_second(0) { }
72 : m_first(first), m_second(second) { }
82 RefPtr<CSSPrimitiveValue> m_second; member in class:WebCore::Pair
  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.h 46 , m_second(0)
59 inline int second() const { return m_second; }
70 inline void setSecond(int second) { m_second = second; }
88 ret.tm_sec = m_second;
107 m_second = other.m_second;
120 int m_second; member in class:WTF::GregorianDateTime
GregorianDateTime.cpp 61 m_second = systemTime.wSecond;
76 m_second = localTM.tm_sec;
  /external/chromium_org/third_party/WebKit/Source/core/html/
DateTimeFieldsState.h 63 unsigned second() const { return m_second; }
73 bool hasSecond() const { return m_second != emptyValue; }
83 void setSecond(unsigned second) { m_second = second; }
93 unsigned m_second; member in class:WebCore::DateTimeFieldsState
DateTimeFieldsState.cpp 63 , m_second(emptyValue)
100 state.append(hasSecond() ? String::number(m_second) : emptyString());
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DateComponents.h 50 , m_second(0)
72 int second() const { return m_second; }
125 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
127 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
134 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
199 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))
452 m_second = second;
471 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
491 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
508 m_second = static_cast<int>(fmod(value, secondsPerMinute));
545 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, m_minute, m_second, m_millisecond))
647 return ((m_hour * minutesPerHour + m_minute) * secondsPerMinute + m_second) * msPerSecond + m_millisecond;
683 else if (format == None && m_second)
    [all...]

Completed in 362 milliseconds