Lines Matching refs:TiXmlText
90 class TiXmlText; variable
640 …const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) … in ToText()
647 …TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } /… in ToText()
1061 class TiXmlText : public TiXmlNode
1069 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT) in TiXmlText() function
1074 virtual ~TiXmlText() {} in ~TiXmlText()
1078 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT) in TiXmlText() function
1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); } in TiXmlText() function
1086 void operator=( const TiXmlText& base ) { base.CopyTo( this ); }
1101 void CopyTo( TiXmlText* target ) const;
1498 TiXmlText* Text() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); } in Text()