Home | History | Annotate | Download | only in xml

Lines Matching defs:CXML_Element

17 class CXML_Element : public CXML_Object {
19 static std::unique_ptr<CXML_Element> Parse(const void* pBuffer, size_t size);
21 CXML_Element(const CXML_Element* pParent,
24 ~CXML_Element() override;
27 CXML_Element* AsElement() override;
28 const CXML_Element* AsElement() const override;
32 const CXML_Element* GetParent() const { return m_pParent.Get(); }
50 CXML_Element* GetElement(const ByteStringView& space,
59 static bool MatchesElement(const CXML_Element* pKid,
66 UnownedPtr<const CXML_Element> const m_pParent;