Home | History | Annotate | Download | only in tinyxml2

Lines Matching refs:XMLText

500         XMLText* text = new (textPool.Alloc()) XMLText( this );

517 returnNode = new (textPool.Alloc()) XMLText( this );
806 // --------- XMLText ---------- //
807 char* XMLText::ParseDeep( char* p, StrPair* )
830 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
835 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern?
841 bool XMLText::ShallowEqual( const XMLNode* compare ) const
847 bool XMLText::Accept( XMLVisitor* visitor ) const
1481 XMLText* XMLDocument::NewText( const char* str )
1483 XMLText* text = new (textPool.Alloc()) XMLText( this );
1997 bool XMLPrinter::Visit( const XMLText& text )