Lines Matching refs:TiXmlText
88 class TiXmlText; variable
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; } in Visit() argument
701 …virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined ty… in ToText()
708 …virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Wil… in ToText()
1212 class TiXmlText : public TiXmlNode
1220 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) in TiXmlText() function
1225 virtual ~TiXmlText() {} in ~TiXmlText()
1229 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) in TiXmlText() function
1236 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); } in TiXmlText() function
1237 TiXmlText& operator=( const TiXmlText& base ) { base.CopyTo( this ); return *this; }
1249 …virtual const TiXmlText* ToText() const { return this; } ///< Cast to a more defined type. Will re… in ToText()
1250 …virtual TiXmlText* ToText() { return this; } ///< Cast to a more defined type. Will re… in ToText()
1259 void CopyTo( TiXmlText* target ) const;
1691 TiXmlText* ToText() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); } in ToText()
1707 TiXmlText* Text() const { return ToText(); } in Text()
1750 virtual bool Visit( const TiXmlText& text );