Home
last modified time | relevance | path

Searched refs:rareData (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScopeAdopter.cpp60 NodeRareData* rareData = node->rareData(); in moveTreeToNewScope() local
61 if (rareData->nodeLists()) in moveTreeToNewScope()
62 rareData->nodeLists()->adoptTreeScope(); in moveTreeToNewScope()
119 NodeRareData* rareData = node.rareData(); in moveNodeToNewDocument() local
120 if (rareData->nodeLists()) in moveNodeToNewDocument()
121 rareData->nodeLists()->adoptDocument(&oldDocument, newDocument); in moveNodeToNewDocument()
DElement.cpp231 return static_cast<ElementRareData*>(rareData()); in elementRareData()
368 ElementRareData& rareData = const_cast<Element*>(this)->ensureElementRareData(); in attributes() local
369 if (NamedNodeMap* attributeMap = rareData.attributeMap()) in attributes()
372 rareData.setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this))); in attributes()
373 return rareData.attributeMap(); in attributes()
385 ElementRareData& rareData = ensureElementRareData(); in ensureActiveAnimations() local
386 if (!rareData.activeAnimations()) in ensureActiveAnimations()
387 rareData.setActiveAnimations(adoptPtr(new ActiveAnimations())); in ensureActiveAnimations()
388 return rareData.activeAnimations(); in ensureActiveAnimations()
2492 ElementRareData& rareData = ensureElementRareData(); in computedStyle() local
[all …]
DNode.cpp326 NodeRareData* Node::rareData() const in rareData() function in WebCore::Node
335 return *rareData(); in ensureRareData()
877 if (NodeListsNodeData* lists = rareData()->nodeLists()) in invalidateNodeListCachesInAncestors()
893 NodeRareData* data = node->rareData(); in invalidateNodeListCachesInAncestors()
901 return hasRareData() ? rareData()->nodeLists() : 0; in nodeLists()
906 rareData()->clearNodeLists(); in clearNodeLists()
2240 NodeMutationObserverData* data = rareData()->mutationObserverData(); in mutationObserverRegistry()
2250 NodeMutationObserverData* data = rareData()->mutationObserverData(); in transientMutationObserverRegistry()
2592 return hasRareData() ? rareData()->connectedSubframeCount() : 0; in connectedSubframeCount()
2603 rareData()->decrementConnectedSubframeCount(amount); in decrementConnectedSubframeCount()
DNode.h798 NodeRareData* rareData() const;
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.cpp105 SVGElementRareData* rareData = it->value; in cleanupAnimatedProperties() local
106 rareData->destroyAnimatedSMILStyleProperties(); in cleanupAnimatedProperties()
107 if (SVGCursorElement* cursorElement = rareData->cursorElement()) in cleanupAnimatedProperties()
109 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue()) in cleanupAnimatedProperties()
112 delete rareData; in cleanupAnimatedProperties()
608 SVGElementRareData* rareData = ensureSVGRareData(); in setCursorElement() local
609 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) { in setCursorElement()
614 rareData->setCursorElement(cursorElement); in setCursorElement()
625 SVGElementRareData* rareData = ensureSVGRareData(); in setCursorImageValue() local
626 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue()) { in setCursorImageValue()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlockFlow.h148 RenderBlockFlow::RenderBlockFlowRareData& rareData = ensureRareData(); in setLineGridBox() local
149 if (rareData.m_lineGridBox) in setLineGridBox()
150 rareData.m_lineGridBox->destroy(); in setLineGridBox()
151 rareData.m_lineGridBox = box; in setLineGridBox()
DRenderBlockFlow.cpp2644 RenderBlockFlow::RenderBlockFlowRareData& rareData = ensureRareData(); in setRenderNamedFlowFragment() local
2645 if (rareData.m_renderNamedFlowFragment) in setRenderNamedFlowFragment()
2646 rareData.m_renderNamedFlowFragment->destroy(); in setRenderNamedFlowFragment()
2647 rareData.m_renderNamedFlowFragment = flowFragment; in setRenderNamedFlowFragment()