Searched refs:XMLText (Results 1 – 2 of 2) sorted by relevance
97 class XMLText; variable387 virtual bool Visit( const XMLText& /*text*/ ) { in Visit() argument512 virtual XMLText* ToText() { in ToText()531 virtual const XMLText* ToText() const { in ToText()758 class XMLText : public XMLNode765 virtual XMLText* ToText() { in ToText()768 virtual const XMLText* ToText() const { in ToText()787 XMLText( XMLDocument* doc ) : XMLNode( doc ), isCData( false ) {} in XMLText() function788 virtual ~XMLText() {} in ~XMLText()789 XMLText( const XMLText& ); // not supported[all …]
524 XMLText* text = new (textPool.Alloc()) XMLText( this ); in Identify()541 returnNode = new (textPool.Alloc()) XMLText( this ); in Identify()831 char* XMLText::ParseDeep( char* p, StrPair* ) in ParseDeep()854 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()859 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone()865 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()871 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()1518 XMLText* XMLDocument::NewText( const char* str ) in NewText()1520 XMLText* text = new (textPool.Alloc()) XMLText( this ); in NewText()2034 bool XMLPrinter::Visit( const XMLText& text ) in Visit()