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

  /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 105 milliseconds