Home
last modified time | relevance | path

Searched refs:XMLComment (Results 1 – 3 of 3) sorted by relevance

/external/tinyxml2/
Dtinyxml2.h121 class XMLComment; variable
512 virtual bool Visit( const XMLComment& /*comment*/ ) { in Visit() argument
694 virtual XMLComment* ToComment() { in ToComment()
716 virtual const XMLComment* ToComment() const { in ToComment()
1025 class TINYXML2_LIB XMLComment : public XMLNode
1029 virtual XMLComment* ToComment() { in ToComment()
1032 virtual const XMLComment* ToComment() const { in ToComment()
1042 explicit XMLComment( XMLDocument* doc );
1043 virtual ~XMLComment();
1048 XMLComment( const XMLComment& ); // not supported
[all …]
Dtinyxml2.cpp704 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()
705 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()
713 returnNode = CreateUnlinkedNode<XMLComment>( _commentPool ); in Identify()
1224 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in tinyxml2::XMLComment
1229 XMLComment::~XMLComment() in ~XMLComment()
1234 char* XMLComment::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1245 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1250XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone()
1255 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1258 const XMLComment* comment = compare->ToComment(); in ShallowEqual()
[all …]
Dxmltest.cpp1089 const XMLComment* comment = root->FirstChildElement("comment")->FirstChild()->ToComment(); in main()
1276 XMLComment* comment = doc.FirstChild()->ToComment(); in main()
1360 XMLComment* c0 = e0->ToComment(); in main()
1361 XMLComment* c1 = e1->ToComment(); in main()
2389 bool Visit(const XMLComment& comment) in main()