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
693 virtual XMLComment* ToComment() { in ToComment()
715 virtual const XMLComment* ToComment() const { in ToComment()
1024 class TINYXML2_LIB XMLComment : public XMLNode
1028 virtual XMLComment* ToComment() { in ToComment()
1031 virtual const XMLComment* ToComment() const { in ToComment()
1041 explicit XMLComment( XMLDocument* doc );
1042 virtual ~XMLComment();
1047 XMLComment( const XMLComment& ); // not supported
[all …]
Dtinyxml2.cpp682 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()
683 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()
691 returnNode = CreateUnlinkedNode<XMLComment>( _commentPool ); in Identify()
1202 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in tinyxml2::XMLComment
1207 XMLComment::~XMLComment() in ~XMLComment()
1212 char* XMLComment::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1223 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1228XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone()
1233 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1236 const XMLComment* comment = compare->ToComment(); in ShallowEqual()
[all …]
Dxmltest.cpp1152 XMLComment* comment = doc.FirstChild()->ToComment(); in main()
1236 XMLComment* c0 = e0->ToComment(); in main()
1237 XMLComment* c1 = e1->ToComment(); in main()
2201 bool Visit(const XMLComment& comment) in main()