Home | History | Annotate | Download | only in parser

Lines Matching refs:Element

35 class Element;
50 explicit Entry(Element* element)
51 : m_element(element)
53 ASSERT(element);
64 Element* element() const
67 // callers should check isMarker() before calling element().
71 void replaceElement(PassRefPtr<Element> element) { m_element = element; }
74 bool operator==(Element* element) const { return m_element == element; }
75 bool operator!=(Element* element) const { return m_element != element; }
78 RefPtr<Element> m_element;
106 Element* closestElementInScopeWithName(const AtomicString&);
108 Entry* find(Element*);
109 bool contains(Element*);
110 void append(Element*);
111 void remove(Element*);
113 Bookmark bookmarkFor(Element*);
114 void swapTo(Element* oldElement, Element* newElement, const Bookmark&);