Searched defs:rareData (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGElement.cpp76 SVGElementRareData* rareData = it->second; local
77 if (SVGCursorElement* cursorElement = rareData->cursorElement())
79 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
82 delete rareData;
207 SVGElementRareData* rareData = ensureRareSVGData(); local
208 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
213 rareData->setCursorElement(cursorElement);
224 SVGElementRareData* rareData = ensureRareSVGData(); local
225 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue()) {
230 rareData
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp735 StyleRareInheritedData* rareData = rareInheritedData.access(); local
737 delete rareData->textShadow;
738 rareData->textShadow = val;
742 val->setNext(rareData->textShadow);
743 rareData->textShadow = val;
748 StyleRareNonInheritedData* rareData = rareNonInheritedData.access(); local
750 rareData->m_boxShadow.set(shadowData);
754 shadowData->setNext(rareData->m_boxShadow.leakPtr());
755 rareData->m_boxShadow.set(shadowData);
/external/webkit/Source/WebCore/dom/
H A DElement.cpp120 inline ElementRareData* Element::rareData() const function in class:WebCore::Element
1005 ElementRareData* data = rareData();
1023 rareData()->resetComputedStyle();
1081 rareData()->resetComputedStyle();
1170 return hasRareData() ? rareData()->m_shadowRoot : 0;
1193 ElementRareData* data = rareData();
1641 return hasRareData() ? rareData()->m_minimumSizeForResizing : defaultMinimumSizeForResizing();
1695 rareData()->setNeedsFocusAppearanceUpdateSoonAfterAttach(false);
1805 return rareData()->m_classList.get();
1820 return rareData()
[all...]
H A DNode.cpp392 if (m_document && rareData()->nodeLists())
456 if (hasRareData() && rareData()->nodeLists()) {
478 TreeScope* scope = rareData()->treeScope();
492 rareData()->setTreeScope(0);
526 NodeRareData* Node::rareData() const function in class:WebCore::Node
535 return rareData();
579 return hasRareData() ? rareData()->tabIndex() : 0;
933 return rareData()->isFocused();
938 return hasRareData() && rareData()->tabIndexSetExplicitly();
997 ASSERT(rareData());
[all...]

Completed in 845 milliseconds