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 64 NodeRareData* rareData = node->rareData();
65 if (rareData->nodeLists())
66 rareData->nodeLists()->adoptTreeScope();
135 NodeRareData* rareData = node.rareData();
136 if (rareData->nodeLists())
137 rareData->nodeLists()->adoptDocument(oldDocument, newDocument);
Element.cpp 177 return static_cast<ElementRareData*>(rareData());
330 ElementRareData& rareData = const_cast<Element*>(this)->ensureElementRareData();
331 if (NamedNodeMap* attributeMap = rareData.attributeMap())
334 rareData.setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this)));
335 return rareData.attributeMap();
347 ElementRareData& rareData = ensureElementRareData();
348 if (!rareData.activeAnimations())
349 rareData.setActiveAnimations(adoptPtrWillBeNoop(new ActiveAnimations()));
350 return *rareData.activeAnimations();
    [all...]
Node.cpp 226 printf("Number of Nodes with RareData: %zu\n\n", nodesWithRareData);
247 printf(" Number of Elements with RareData: %zu\n", elementsWithRareData);
344 NodeRareData* Node::rareData() const
353 return *rareData();
363 return *rareData();
835 return hasRareData() ? rareData()->nodeLists() : 0;
840 rareData()->clearNodeLists();
    [all...]
ContainerNode.cpp     [all...]
Node.h 753 NodeRareData* rareData() const;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 519 SVGElementRareData* rareData = ensureSVGRareData();
520 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
525 rareData->setCursorElement(cursorElement);
537 SVGElementRareData* rareData = ensureSVGRareData();
539 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue()) {
545 rareData->setCursorImageValue(cursorImageValue);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockFlow.cpp     [all...]

Completed in 83 milliseconds