Home
last modified time | relevance | path

Searched refs:TiXmlText (Results 1 – 3 of 3) sorted by relevance

/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h88 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; }
[all …]
Dtinyxmlparser.cpp866 TiXmlText* text = new TiXmlText( "" ); in Identify()
949 TiXmlText text( "" ); in StreamIn()
1192 TiXmlText* textNode = new TiXmlText( "" ); in ReadValue()
1466 void TiXmlText::StreamIn( std::istream * in, TIXML_STRING * tag ) in StreamIn()
1497 const char* TiXmlText::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
1631 bool TiXmlText::Blank() const in Blank()
Dtinyxml.cpp904 const TiXmlText* childText = child->ToText(); in GetText()
1332 void TiXmlText::Print( FILE* cfile, int depth ) const in Print()
1353 void TiXmlText::CopyTo( TiXmlText* target ) const in CopyTo()
1360 bool TiXmlText::Accept( TiXmlVisitor* visitor ) const in Accept()
1366 TiXmlNode* TiXmlText::Clone() const in Clone()
1368 TiXmlText* clone = 0; in Clone()
1369 clone = new TiXmlText( "" ); in Clone()
1829 bool TiXmlPrinter::Visit( const TiXmlText& text ) in Visit()