Home | History | Annotate | Download | only in css

Lines Matching refs:quad

405 void CSSPrimitiveValue::init(PassRefPtrWillBeRawPtr<Quad> quad)
409 m_value.quad = quad.leakRef();
462 // We must not call deref() when oilpan is enabled because m_value.quad is traced.
464 m_value.quad->deref();
994 Quad* CSSPrimitiveValue::getQuadValue(ExceptionState& exceptionState) const
997 exceptionState.throwDOMException(InvalidAccessError, "This object is not a quad value.");
1001 return m_value.quad;
1275 result = CSSPrimitiveValue::create(m_value.quad->cloneForCSSOM());
1392 return m_value.quad && other.m_value.quad && m_value.quad->equals(*other.m_value.quad);
1416 visitor->trace(m_value.quad);