Home
last modified time | relevance | path

Searched refs:TiXmlText (Results 1 – 9 of 9) 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()
/external/tinyxml/
Dtinyxml.h90 class TiXmlText; variable
640 …const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) … in ToText()
647TiXmlText* 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;
[all …]
Dxmltest.cpp198 TiXmlText text( "Talk to:" ); in main()
391 TiXmlText* text = textHandle.Text(); in main()
522TiXmlText* text = docH.FirstChildElement( "document" ).FirstChildElement( (const char*) russianEle… in main()
610 TiXmlText text( "TextNode" ); in main()
611 TiXmlText textCopy( text ); in main()
612 TiXmlText textAssign( "incorrect" ); in main()
759 TiXmlText text( "Missing" ); in main()
767 TiXmlText textSTL( name ); in main()
856 TiXmlText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText(); in main()
911 TiXmlText* text; in main()
Dtinyxmlparser.cpp844 TiXmlText* text = new TiXmlText( "" ); in Identify()
931 TiXmlText text( "" ); in StreamIn()
1147 TiXmlText* textNode = new TiXmlText( "" ); in ReadValue()
1387 void TiXmlText::StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag ) in StreamIn()
1432 const char* TiXmlText::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
1565 bool TiXmlText::Blank() const in Blank()
Dtinyxml.cpp886 const TiXmlText* childText = child->ToText(); in GetText()
1326 void TiXmlText::Print( FILE* cfile, int depth ) const in Print()
1354 void TiXmlText::StreamOut( TIXML_OSTREAM * stream ) const in StreamOut()
1367 void TiXmlText::CopyTo( TiXmlText* target ) const in CopyTo()
1374 TiXmlNode* TiXmlText::Clone() const in Clone()
1376 TiXmlText* clone = 0; in Clone()
1377 clone = new TiXmlText( "" ); in Clone()
Dreadme.txt201 will have the Value() of "Far & Away" when queried from the TiXmlText object,
416 A TiXmlText. This is a leaf node and cannot contain other nodes.
435 TiXmlText "Go to the "
437 TiXmlText "Toy store!"
439 TiXmlText "Do bills"
Dchanges.txt201 - TiXmlText can now parse and output as CDATA