HomeSort by relevance Sort by last modified time
    Searched refs:rareData (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeAdopter.cpp 60 NodeRareData* rareData = node->rareData();
61 if (rareData->nodeLists())
62 rareData->nodeLists()->adoptTreeScope();
119 NodeRareData* rareData = node.rareData();
120 if (rareData->nodeLists())
121 rareData->nodeLists()->adoptDocument(&oldDocument, newDocument);
Element.cpp 231 return static_cast<ElementRareData*>(rareData());
368 ElementRareData& rareData = const_cast<Element*>(this)->ensureElementRareData();
369 if (NamedNodeMap* attributeMap = rareData.attributeMap())
372 rareData.setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this)));
373 return rareData.attributeMap();
385 ElementRareData& rareData = ensureElementRareData();
386 if (!rareData.activeAnimations())
387 rareData.setActiveAnimations(adoptPtr(new ActiveAnimations()));
388 return rareData.activeAnimations();
    [all...]
Node.cpp 236 printf("Number of Nodes with RareData: %zu\n\n", nodesWithRareData);
261 printf(" Number of Elements with RareData: %zu\n", elementsWithRareData);
326 NodeRareData* Node::rareData() const
335 return *rareData();
877 if (NodeListsNodeData* lists = rareData()->nodeLists())
893 NodeRareData* data = node->rareData();
901 return hasRareData() ? rareData()->nodeLists() : 0;
906 rareData()->clearNodeLists();
    [all...]
Node.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 105 SVGElementRareData* rareData = it->value;
106 rareData->destroyAnimatedSMILStyleProperties();
107 if (SVGCursorElement* cursorElement = rareData->cursorElement())
109 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
112 delete rareData;
608 SVGElementRareData* rareData = ensureSVGRareData();
609 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
614 rareData->setCursorElement(cursorElement);
625 SVGElementRareData* rareData = ensureSVGRareData();
626 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockFlow.h 148 RenderBlockFlow::RenderBlockFlowRareData& rareData = ensureRareData();
149 if (rareData.m_lineGridBox)
150 rareData.m_lineGridBox->destroy();
151 rareData.m_lineGridBox = box;
RenderBlockFlow.cpp     [all...]

Completed in 286 milliseconds