HomeSort by relevance Sort by last modified time
    Searched refs:TiXmlText (Results 1 - 7 of 7) sorted by null

  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 88 class TiXmlText;
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
701 virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
708 virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
    [all...]
tinyxml.cpp 904 const TiXmlText* childText = child->ToText();
1332 void TiXmlText::Print( FILE* cfile, int depth ) const
1353 void TiXmlText::CopyTo( TiXmlText* target ) const
1360 bool TiXmlText::Accept( TiXmlVisitor* visitor ) const
1366 TiXmlNode* TiXmlText::Clone() const
1368 TiXmlText* clone = 0;
1369 clone = new TiXmlText( "" );
    [all...]
tinyxmlparser.cpp 866 TiXmlText* text = new TiXmlText( "" );
949 TiXmlText text( "" );
1192 TiXmlText* textNode = new TiXmlText( "" );
1219 // a TiXmlText in the "CDATA" style.
    [all...]
  /external/tinyxml/
tinyxml.h 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.
    [all...]
tinyxml.cpp 886 const TiXmlText* childText = child->ToText();
1326 void TiXmlText::Print( FILE* cfile, int depth ) const
1354 void TiXmlText::StreamOut( TIXML_OSTREAM * stream ) const
1367 void TiXmlText::CopyTo( TiXmlText* target ) const
1374 TiXmlNode* TiXmlText::Clone() const
1376 TiXmlText* clone = 0;
1377 clone = new TiXmlText( "" );
    [all...]
xmltest.cpp 198 TiXmlText text( "Talk to:" );
391 TiXmlText* text = textHandle.Text();
522 TiXmlText* text = docH.FirstChildElement( "document" ).FirstChildElement( (const char*) russianElementName ).Child( 0 ).Text();
610 TiXmlText text( "TextNode" );
611 TiXmlText textCopy( text );
612 TiXmlText textAssign( "incorrect" );
759 TiXmlText text( "Missing" );
767 TiXmlText textSTL( name );
856 TiXmlText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText();
911 TiXmlText* text
    [all...]
tinyxmlparser.cpp 844 TiXmlText* text = new TiXmlText( "" );
931 TiXmlText text( "" );
1147 TiXmlText* textNode = new TiXmlText( "" );
1175 // a TiXmlText in the "CDATA" style.
1387 void TiXmlText::StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag )
1432 const char* TiXmlText::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding )
    [all...]

Completed in 625 milliseconds