Home
last modified time | relevance | path

Searched refs:CXML_Object (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fxcrt/xml/
Dcxml_object.h13 class CXML_Object {
15 virtual ~CXML_Object();
24 CXML_Object() {} in CXML_Object() function
27 inline CXML_Content* ToContent(CXML_Object* pObj) { in ToContent()
31 inline const CXML_Content* ToContent(const CXML_Object* pObj) { in ToContent()
35 inline CXML_Element* ToElement(CXML_Object* pObj) { in ToElement()
39 inline const CXML_Element* ToElement(const CXML_Object* pObj) { in ToElement()
Dcxml_object.cpp9 CXML_Object::~CXML_Object() {} in ~CXML_Object()
11 CXML_Content* CXML_Object::AsContent() { in AsContent()
15 CXML_Element* CXML_Object::AsElement() { in AsElement()
19 const CXML_Content* CXML_Object::AsContent() const { in AsContent()
23 const CXML_Element* CXML_Object::AsElement() const { in AsElement()
Dcxml_element.h17 class CXML_Element : public CXML_Object {
42 void AppendChild(std::unique_ptr<CXML_Object> child) { in AppendChild()
49 CXML_Object* GetChild(size_t index) const;
70 std::vector<std::unique_ptr<CXML_Object>> m_Children;
Dcxml_content.h13 class CXML_Content : public CXML_Object {
Dcxml_element.cpp120 CXML_Object* CXML_Element::GetChild(size_t index) const { in GetChild()