Lines Matching refs:Element
38 class Element;
57 using ElementCloneFunc = std::function<void(const Element&, Element*)>;
59 // Clones the Node subtree, using the given function to decide how to clone an Element.
106 * An Element XML node.
108 class Element : public BaseNode<Element> {
117 xml::Element* FindChild(const android::StringPiece& ns, const android::StringPiece& name);
118 xml::Element* FindChildWithAttribute(const android::StringPiece& ns,
123 std::vector<xml::Element*> GetChildElements();
165 Element* FindRootElement(XmlResource* doc);
166 Element* FindRootElement(Node* node);
178 virtual void Visit(Element* node) {}
191 void Visit(Element* node) override { VisitChildren(node); }