Lines Matching refs:TiXmlText
90 class TiXmlText;
640 const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
647 TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
954 and concise, GetText() is limited compared to getting the TiXmlText child
957 If the first child of 'this' is a TiXmlText, the GetText()
1061 class TiXmlText : public TiXmlNode
1069 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT)
1074 virtual ~TiXmlText() {}
1078 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT)
1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); }
1086 void operator=( const TiXmlText& base ) { base.CopyTo( this ); }
1101 void CopyTo( TiXmlText* target ) const;
1497 /// Return the handle as a TiXmlText. This may return null.
1498 TiXmlText* Text() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }