Searched defs:cloneForCSSOM (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGridLineNamesValue.cpp46 PassRefPtrWillBeRawPtr<CSSGridLineNamesValue> CSSGridLineNamesValue::cloneForCSSOM() const function in class:blink::CSSGridLineNamesValue
H A DCSSFilterValue.cpp91 PassRefPtrWillBeRawPtr<CSSFilterValue> CSSFilterValue::cloneForCSSOM() const function in class:blink::CSSFilterValue
H A DCSSTransformValue.cpp85 PassRefPtrWillBeRawPtr<CSSTransformValue> CSSTransformValue::cloneForCSSOM() const function in class:blink::CSSTransformValue
H A DCounter.h55 PassRefPtrWillBeRawPtr<Counter> cloneForCSSOM() const function in class:blink::Counter
57 return create(m_identifier ? m_identifier->cloneForCSSOM() : nullptr
58 , m_listStyle ? m_listStyle->cloneForCSSOM() : nullptr
59 , m_separator ? m_separator->cloneForCSSOM() : nullptr);
H A DCSSImageSetValue.cpp190 PassRefPtrWillBeRawPtr<CSSImageSetValue> CSSImageSetValue::cloneForCSSOM() const function in class:blink::CSSImageSetValue
H A DCSSImageValue.cpp111 PassRefPtrWillBeRawPtr<CSSValue> CSSImageValue::cloneForCSSOM() const function in class:blink::CSSImageValue
H A DCSSValue.cpp601 PassRefPtrWillBeRawPtr<CSSValue> CSSValue::cloneForCSSOM() const function in class:blink::CSSValue
605 return toCSSPrimitiveValue(this)->cloneForCSSOM();
607 return toCSSValueList(this)->cloneForCSSOM();
610 return toCSSImageValue(this)->cloneForCSSOM();
612 return toCSSFilterValue(this)->cloneForCSSOM();
614 return toCSSTransformValue(this)->cloneForCSSOM();
616 return toCSSImageSetValue(this)->cloneForCSSOM();
H A DCSSValueList.cpp146 m_values[i] = cloneFrom.m_values[i]->cloneForCSSOM();
149 PassRefPtrWillBeRawPtr<CSSValueList> CSSValueList::cloneForCSSOM() const function in class:blink::CSSValueList
H A DRect.h57 : m_top(cloneFrom.m_top ? cloneFrom.m_top->cloneForCSSOM() : nullptr)
58 , m_right(cloneFrom.m_right ? cloneFrom.m_right->cloneForCSSOM() : nullptr)
59 , m_bottom(cloneFrom.m_bottom ? cloneFrom.m_bottom->cloneForCSSOM() : nullptr)
60 , m_left(cloneFrom.m_left ? cloneFrom.m_left->cloneForCSSOM() : nullptr)
75 PassRefPtrWillBeRawPtr<Rect> cloneForCSSOM() const { return adoptRefWillBeNoop(new Rect(*this)); } function in class:blink::Rect
99 PassRefPtrWillBeRawPtr<Quad> cloneForCSSOM() const { return adoptRefWillBeNoop(new Quad(*this)); } function in class:blink::Quad
H A DCSSPrimitiveValue.cpp1257 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> CSSPrimitiveValue::cloneForCSSOM() const function in class:blink::CSSPrimitiveValue
1269 result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM());
1272 result = CSSPrimitiveValue::create(m_value.rect->cloneForCSSOM());
1275 result = CSSPrimitiveValue::create(m_value.quad->cloneForCSSOM());

Completed in 91 milliseconds