Home | History | Annotate | Download | only in dom

Lines Matching refs:Element

41 class Element;
46 void add(StringImpl*, Element*);
47 void remove(StringImpl*, Element*);
55 Element* getElementById(StringImpl*, const TreeScope*) const;
56 Element* getElementByName(StringImpl*, const TreeScope*) const;
57 Element* getElementByMapName(StringImpl*, const TreeScope*) const;
58 Element* getElementByLowercasedMapName(StringImpl*, const TreeScope*) const;
59 Element* getElementByLabelForAttribute(StringImpl*, const TreeScope*) const;
61 const Vector<Element*>* getAllElementsById(StringImpl*, const TreeScope*) const;
66 template<bool keyMatches(StringImpl*, Element*)> Element* get(StringImpl*, const TreeScope*) const;
70 : element(0)
74 explicit MapEntry(Element* firstElement)
75 : element(firstElement)
80 Element* element;
82 Vector<Element*> orderedList;