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

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DTreeScopeAdopter.cpp61 NodeRareData* rareData = node->rareData(); local
62 if (rareData->nodeLists())
63 rareData->nodeLists()->adoptTreeScope();
120 NodeRareData* rareData = node->rareData(); local
121 if (rareData->nodeLists())
122 rareData->nodeLists()->adoptDocument(oldDocument, newDocument);
H A DNode.cpp450 NodeRareData* Node::rareData() const function in class:WebCore::Node
459 return rareData();
867 if (NodeListsNodeData* lists = rareData()->nodeLists())
883 NodeRareData* data = node->rareData();
891 return hasRareData() ? rareData()->nodeLists() : 0;
896 rareData()->clearNodeLists();
2091 NodeMutationObserverData* data = rareData()->mutationObserverData();
2101 NodeMutationObserverData* data = rareData()->mutationObserverData();
2477 return hasRareData() ? rareData()->connectedSubframeCount() : 0;
2488 rareData()
[all...]
H A DElement.cpp228 return static_cast<ElementRareData*>(rareData());
354 ElementRareData* rareData = const_cast<Element*>(this)->ensureElementRareData(); local
355 if (NamedNodeMap* attributeMap = rareData->attributeMap())
358 rareData->setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this)));
359 return rareData->attributeMap();
2335 ElementRareData* rareData = ensureElementRareData();
2338 rareData->setChildIndex(index);
3048 return hasRareData() && rareData()->nodeLists() ? rareData()->nodeLists()->cacheWithAtomicName<HTMLCollection>(type) : 0;
H A DNode.h713 NodeRareData* rareData() const;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DStructureRareData.cpp43 StructureRareData* rareData = new (NotNull, allocateCell<StructureRareData>(vm.heap)) StructureRareData(vm, previous); local
44 rareData->finishCreation(vm);
45 return rareData;
H A DStructure.h166 return rareData()->previousID();
270 return rareData()->objectToStringValue();
277 rareData()->setObjectToStringValue(vm, owner, value);
395 rareData()->setPreviousID(vm, transition, structure);
403 rareData()->clearPreviousID();
425 StructureRareData* rareData() const function in class:JSC::Structure
H A DStructureInlines.h121 rareData()->setEnumerationCache(vm, this, enumerationCache);
128 return rareData()->enumerationCache();
H A DStructure.cpp224 if (previous->typeInfo().structureHasRareData() && previous->rareData()->needsCloning())
697 StructureRareData* rareData = StructureRareData::create(vm, previous()); local
699 m_previousOrRareData.set(vm, this, rareData);
705 StructureRareData* newRareData = StructureRareData::clone(vm, other->rareData());
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGElement.cpp72 SVGElementRareData* rareData = it->value; local
73 rareData->destroyAnimatedSMILStyleProperties();
74 if (SVGCursorElement* cursorElement = rareData->cursorElement())
76 if (CSSCursorImageValue* cursorImageValue = rareData->cursorImageValue())
79 delete rareData;
271 SVGElementRareData* rareData = ensureSVGRareData(); local
272 if (SVGCursorElement* oldCursorElement = rareData->cursorElement()) {
277 rareData->setCursorElement(cursorElement);
288 SVGElementRareData* rareData = ensureSVGRareData(); local
289 if (CSSCursorImageValue* oldCursorImageValue = rareData
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DRenderStyle.cpp1005 StyleRareInheritedData* rareData = rareInheritedData.access(); local
1007 rareData->textShadow = shadowData;
1011 shadowData->setNext(rareData->textShadow.release());
1012 rareData->textShadow = shadowData;
1017 StyleRareNonInheritedData* rareData = rareNonInheritedData.access(); local
1019 rareData->m_boxShadow = shadowData;
1023 shadowData->setNext(rareData->m_boxShadow.release());
1024 rareData->m_boxShadow = shadowData;

Completed in 313 milliseconds