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

  /external/webkit/Source/WebCore/svg/
SVGElement.cpp 76 SVGElementRareData* rareData = it->second;
77 if (SVGCursorElement* cursorElement = rareData->cursorElement())
79 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
82 delete rareData;
207 SVGElementRareData* rareData = ensureRareSVGData();
208 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
213 rareData->setCursorElement(cursorElement);
224 SVGElementRareData* rareData = ensureRareSVGData();
225 if (CSSCursorImageValue* oldCursorImageValue = rareData->cursorImageValue()) {
230 rareData->setCursorImageValue(cursorImageValue)
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.cpp 254 printf("Number of Nodes with RareData: %zu\n\n", nodesWithRareData);
392 if (m_document && rareData()->nodeLists())
456 if (hasRareData() && rareData()->nodeLists()) {
478 TreeScope* scope = rareData()->treeScope();
492 rareData()->setTreeScope(0);
526 NodeRareData* Node::rareData() const
535 return rareData();
579 return hasRareData() ? rareData()->tabIndex() : 0;
933 return rareData()->isFocused();
938 return hasRareData() && rareData()->tabIndexSetExplicitly()
    [all...]
TreeScope.cpp 57 rareData()->setTreeScope(0);
Element.cpp 120 inline ElementRareData* Element::rareData() const
1005 ElementRareData* data = rareData();
    [all...]
Element.h 412 ElementRareData* rareData() const;
Node.h 654 NodeRareData* rareData() const;
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp 735 StyleRareInheritedData* rareData = rareInheritedData.access();
737 delete rareData->textShadow;
738 rareData->textShadow = val;
742 val->setNext(rareData->textShadow);
743 rareData->textShadow = val;
748 StyleRareNonInheritedData* rareData = rareNonInheritedData.access();
750 rareData->m_boxShadow.set(shadowData);
754 shadowData->setNext(rareData->m_boxShadow.leakPtr());
755 rareData->m_boxShadow.set(shadowData);
    [all...]

Completed in 138 milliseconds