Searched refs:m_second (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPair.h48 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); }
72 Pair() : m_first(0), m_second(0) { }
74 : m_first(first), m_second(second) { }
84 RefPtr<CSSPrimitiveValue> m_second; member in class:WebCore::Pair
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DConservativeRoots.cpp127 , m_second(second)
134 m_second.mark(address);
139 U& m_second; member in class:JSC::CompositeMarkHook
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDateComponents.h50 , 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
H A DDateComponents.cpp256 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...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerUtilities.h53 , m_second(second)
62 return determinant(m_second - m_first, p - m_first) > -epsilon;
68 const FloatPoint& p4 = m_second;
79 FloatPoint m_second; member in class:WebCore::LayerClipEdge

Completed in 142 milliseconds