HomeSort by relevance Sort by last modified time
    Searched refs:XMLComment (Results 1 - 2 of 2) sorted by null

  /external/tinyxml2/
tinyxml2.h 95 class XMLComment;
352 virtual bool Visit( const XMLComment& /*comment*/ ) { return true; }
446 virtual XMLComment* ToComment() { return 0; } ///< Safely cast to a Comment, or null.
453 virtual const XMLComment* ToComment() const { return 0; }
652 class XMLComment : public XMLNode
656 virtual XMLComment* ToComment() { return this; }
657 virtual const XMLComment* ToComment() const { return this; }
666 XMLComment( XMLDocument* doc );
667 virtual ~XMLComment();
668 XMLComment( const XMLComment& ); // not supported
    [all...]
tinyxml2.cpp 484 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool
485 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool
495 returnNode = new (commentPool.Alloc()) XMLComment( this );
853 // --------- XMLComment ---------- //
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
860 XMLComment::~XMLComment()
862 //printf( "~XMLComment\n" );
866 char* XMLComment::ParseDeep( char* p, StrPair* )
    [all...]

Completed in 32 milliseconds