Searched defs:ElementRecord (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.h53 class ElementRecord { class in class:WebCore::HTMLElementStack
54 WTF_MAKE_NONCOPYABLE(ElementRecord);
56 ~ElementRecord(); // Public for ~PassOwnPtr()
62 bool isAbove(ElementRecord*) const;
64 ElementRecord* next() const { return m_next.get(); }
69 ElementRecord(PassRefPtr<ContainerNode>, PassOwnPtr<ElementRecord>);
71 PassOwnPtr<ElementRecord> releaseNext() { return m_next.release(); }
72 void setNext(PassOwnPtr<ElementRecord> next) { m_next = next; }
75 OwnPtr<ElementRecord> m_nex
[all...]
H A DHTMLElementStack.cpp134 HTMLElementStack::ElementRecord::ElementRecord(PassRefPtr<ContainerNode> node, PassOwnPtr<ElementRecord> next) function in class:WebCore::HTMLElementStack::ElementRecord
141 HTMLElementStack::ElementRecord::~ElementRecord()
145 void HTMLElementStack::ElementRecord::replaceElement(PassRefPtr<Element> element)
153 bool HTMLElementStack::ElementRecord::isAbove(ElementRecord* other) const
155 for (ElementRecord* below = next(); below; below = below->next()) {
327 void HTMLElementStack::insertAbove(PassRefPtr<Element> element, ElementRecord* recordBelo
[all...]

Completed in 67 milliseconds