Home
last modified time | relevance | path

Searched refs:ElementRecord (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLElementStack.h53 class ElementRecord FINAL : public NoBaseWillBeGarbageCollected<ElementRecord> {
54 WTF_MAKE_NONCOPYABLE(ElementRecord); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
57 ~ElementRecord(); // Public for ~PassOwnPtr()
66 bool isAbove(ElementRecord*) const;
68 ElementRecord* next() const { return m_next.get(); } in next()
74 ElementRecord(PassRefPtrWillBeRawPtr<HTMLStackItem>, PassOwnPtrWillBeRawPtr<ElementRecord>);
76 PassOwnPtrWillBeRawPtr<ElementRecord> releaseNext() { return m_next.release(); } in releaseNext()
77 void setNext(PassOwnPtrWillBeRawPtr<ElementRecord> next) { m_next = next; } in setNext()
80 OwnPtrWillBeMember<ElementRecord> m_next;
106 ElementRecord* topRecord() const;
[all …]
DHTMLElementStack.cpp122 HTMLElementStack::ElementRecord::ElementRecord(PassRefPtrWillBeRawPtr<HTMLStackItem> item, PassOwnP… in ElementRecord() function in blink::HTMLElementStack::ElementRecord
130 HTMLElementStack::ElementRecord::~ElementRecord() in ~ElementRecord()
135 void HTMLElementStack::ElementRecord::replaceElement(PassRefPtrWillBeRawPtr<HTMLStackItem> item) in replaceElement()
143 bool HTMLElementStack::ElementRecord::isAbove(ElementRecord* other) const in isAbove()
145 for (ElementRecord* below = next(); below; below = below->next()) { in isAbove()
152 void HTMLElementStack::ElementRecord::trace(Visitor* visitor) in trace()
359 void HTMLElementStack::insertAbove(PassRefPtrWillBeRawPtr<HTMLStackItem> item, ElementRecord* recor… in insertAbove()
373 for (ElementRecord* recordAbove = m_top.get(); recordAbove; recordAbove = recordAbove->next()) { in insertAbove()
378 … recordAbove->setNext(adoptPtrWillBeNoop(new ElementRecord(item, recordAbove->releaseNext()))); in insertAbove()
385 HTMLElementStack::ElementRecord* HTMLElementStack::topRecord() const in topRecord()
[all …]
DHTMLConstructionSite.h163 … void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child);
164 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child);
168 void insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child);
169 void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
185 …HTMLElementStack::ElementRecord* currentElementRecord() const { return m_openElements.topRecord();… in currentElementRecord()
DHTMLConstructionSite.cpp700 …TMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::Elemen… in reparent()
708 void HTMLConstructionSite::reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* chil… in reparent()
716 …ionSite::insertAlreadyParsedChild(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child) in insertAlreadyParsedChild()
729 …tructionSite::takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent) in takeAllChildren()
832 …HTMLElementStack::ElementRecord* lastTemplateElement = m_openElements.topmost(templateTag.localNam… in findFosterSite()
838 …HTMLElementStack::ElementRecord* lastTableElementRecord = m_openElements.topmost(tableTag.localNam… in findFosterSite()
DHTMLTreeBuilder.cpp493 HTMLElementStack::ElementRecord* nodeRecord = m_tree.openElements()->topRecord(); in processCloseWhenNestedTag()
1465 HTMLElementStack::ElementRecord* record = m_tree.openElements()->topRecord(); in processAnyOtherEndTagForInBody()
1507 …HTMLElementStack::ElementRecord* formattingElementRecord = m_tree.openElements()->find(formattingE… in callTheAdoptionAgency()
1517 …HTMLElementStack::ElementRecord* furthestBlock = m_tree.openElements()->furthestBlockForFormatting… in callTheAdoptionAgency()
1530 HTMLElementStack::ElementRecord* node = furthestBlock; in callTheAdoptionAgency()
1531 HTMLElementStack::ElementRecord* nextNode = node->next(); in callTheAdoptionAgency()
1532 HTMLElementStack::ElementRecord* lastNode = furthestBlock; in callTheAdoptionAgency()
1583 HTMLElementStack::ElementRecord* nodeRecord = m_tree.openElements()->topRecord(); in resetInsertionModeAppropriately()
2771 HTMLElementStack::ElementRecord* nodeRecord = m_tree.openElements()->topRecord(); in processTokenInForeignContent()
DHTMLTreeBuilderSimulator.cpp118 …for (HTMLElementStack::ElementRecord* record = treeBuilder->openElements()->topRecord(); record; r… in stateFor()