Home | History | Annotate | Download | only in parser

Lines Matching refs:element

36 class Element;
67 Element* element() const
70 // callers should check isMarker() before calling element().
72 return m_item->element();
77 bool operator==(Element* element) const { return !m_item ? !element : m_item->element() == element; }
78 bool operator!=(Element* element) const { return !m_item ? !!element : m_item->element() != element; }
111 Element* closestElementInScopeWithName(const AtomicString&);
113 Entry* find(Element*);
114 bool contains(Element*);
116 void remove(Element*);
118 Bookmark bookmarkFor(Element*);
119 void swapTo(Element* oldElement, PassRefPtrWillBeRawPtr<HTMLStackItem> newItem, const Bookmark&);