Lines Matching defs:XMLText
97 class XMLText;
350 virtual bool Visit( const XMLText& /*text*/ ) { return true; }
445 virtual XMLText* ToText() { return 0; } ///< Safely cast to Text, or null.
452 virtual const XMLText* ToText() const { return 0; }
620 class XMLText : public XMLNode
627 virtual XMLText* ToText() { return this; }
628 virtual const XMLText* ToText() const { return this; }
641 XMLText( XMLDocument* doc ) : XMLNode( doc ), isCData( false ) {}
642 virtual ~XMLText() {}
643 XMLText( const XMLText& ); // not supported
644 XMLText& operator=( const XMLText& ); // not supported
1139 XMLText* NewText( const char* text );
1198 MemPoolT< sizeof(XMLText) > textPool;
1291 /// Safe cast to XMLText. This can return null.
1292 XMLText* ToText() { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
1328 const XMLText* ToText() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
1431 virtual bool Visit( const XMLText& text );