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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeAdopter.cpp 59 NodeRareData* rareData = node->rareData();
60 if (rareData->nodeLists())
61 rareData->nodeLists()->adoptTreeScope();
118 NodeRareData* rareData = node->rareData();
119 if (rareData->nodeLists())
120 rareData->nodeLists()->adoptDocument(oldDocument, newDocument);
Node.cpp 232 printf("Number of Nodes with RareData: %zu\n\n", nodesWithRareData);
257 printf(" Number of Elements with RareData: %zu\n", elementsWithRareData);
382 NodeRareData* Node::rareData() const
391 return rareData();
905 if (NodeListsNodeData* lists = rareData()->nodeLists())
921 NodeRareData* data = node->rareData();
929 return hasRareData() ? rareData()->nodeLists() : 0;
934 rareData()->clearNodeLists();
    [all...]
Element.cpp 236 return static_cast<ElementRareData*>(rareData());
378 ElementRareData* rareData = const_cast<Element*>(this)->ensureElementRareData();
379 if (NamedNodeMap* attributeMap = rareData->attributeMap())
382 rareData->setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this)));
383 return rareData->attributeMap();
395 ElementRareData* rareData = ensureElementRareData();
397 rareData->setActiveAnimations(adoptPtr(new ActiveAnimations()));
398 return rareData->activeAnimations();
    [all...]
Node.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 96 SVGElementRareData* rareData = it->value;
97 rareData->destroyAnimatedSMILStyleProperties();
98 if (SVGCursorElement* cursorElement = rareData->cursorElement())
100 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
103 delete rareData;
547 SVGElementRareData* rareData = ensureSVGRareData();
548 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
553 rareData->setCursorElement(cursorElement);
564 SVGElementRareData* rareData = ensureSVGRareData();
565 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]

Completed in 65 milliseconds