Home | History | Annotate | Download | only in tinyxml2

Lines Matching defs:ToText

445     virtual XMLText*        ToText()        { return 0; }    ///< Safely cast to Text, or null.

452 virtual const XMLText* ToText() const { return 0; }
627 virtual XMLText* ToText() { return this; }
628 virtual const XMLText* ToText() const { return this; }
1292 XMLText* ToText() { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
1328 const XMLText* ToText() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }