Searched refs:rareData (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScopeAdopter.cpp59 NodeRareData* rareData = node->rareData(); local
60 if (rareData->nodeLists())
61 rareData->nodeLists()->adoptTreeScope();
118 NodeRareData* rareData = node->rareData(); local
119 if (rareData->nodeLists())
120 rareData->nodeLists()->adoptDocument(oldDocument, newDocument);
H A DNode.cpp382 NodeRareData* Node::rareData() const function in class:WebCore::Node
391 return rareData();
905 if (NodeListsNodeData* lists = rareData()->nodeLists())
921 NodeRareData* data = node->rareData();
929 return hasRareData() ? rareData()->nodeLists() : 0;
934 rareData()->clearNodeLists();
2217 NodeMutationObserverData* data = rareData()->mutationObserverData();
2227 NodeMutationObserverData* data = rareData()->mutationObserverData();
2573 return hasRareData() ? rareData()->connectedSubframeCount() : 0;
2584 rareData()
[all...]
H A DElement.cpp236 return static_cast<ElementRareData*>(rareData());
378 ElementRareData* rareData = const_cast<Element*>(this)->ensureElementRareData(); local
379 if (NamedNodeMap* attributeMap = rareData->attributeMap())
382 rareData->setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this)));
383 return rareData->attributeMap();
395 ElementRareData* rareData = ensureElementRareData(); local
397 rareData->setActiveAnimations(adoptPtr(new ActiveAnimations()));
398 return rareData->activeAnimations();
2281 ElementRareData* rareData = ensureElementRareData();
2284 rareData
[all...]
H A DNode.h808 NodeRareData* rareData() const;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp96 SVGElementRareData* rareData = it->value; local
97 rareData->destroyAnimatedSMILStyleProperties();
98 if (SVGCursorElement* cursorElement = rareData->cursorElement())
100 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
103 delete rareData;
547 SVGElementRareData* rareData = ensureSVGRareData(); local
548 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
553 rareData->setCursorElement(cursorElement);
564 SVGElementRareData* rareData = ensureSVGRareData(); local
565 if (CSSCursorImageValue* oldCursorImageValue = rareData
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp846 StyleRareInheritedData* rareData = rareInheritedData.access(); local
848 rareData->textShadow = shadowData;
852 shadowData->setNext(rareData->textShadow.release());
853 rareData->textShadow = shadowData;
858 StyleRareNonInheritedData* rareData = rareNonInheritedData.access(); local
860 rareData->m_boxShadow = shadowData;
864 shadowData->setNext(rareData->m_boxShadow.release());
865 rareData->m_boxShadow = shadowData;

Completed in 103 milliseconds