Searched refs:TiXmlComment (Results 1 – 11 of 11) sorted by relevance
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 85 class TiXmlComment; variable 148 virtual bool Visit( const TiXmlComment& /*comment*/ ) { return true; } in Visit() argument 699 …virtual const TiXmlComment* ToComment() const { return 0; } ///< Cast to a more defined ty… in ToComment() 706 …virtual TiXmlComment* ToComment() { return 0; } ///< Cast to a more defined type. Wi… in ToComment() 1162 class TiXmlComment : public TiXmlNode 1166 TiXmlComment() : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) {} in TiXmlComment() function 1168 TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { in TiXmlComment() function 1171 TiXmlComment( const TiXmlComment& ); 1172 TiXmlComment& operator=( const TiXmlComment& base ); 1174 virtual ~TiXmlComment() {} in ~TiXmlComment() [all …]
|
D | tinyxml.cpp | 1283 TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) in TiXmlComment() function in TiXmlComment 1289 TiXmlComment& TiXmlComment::operator=( const TiXmlComment& base ) in operator =() 1297 void TiXmlComment::Print( FILE* cfile, int depth ) const in Print() 1308 void TiXmlComment::CopyTo( TiXmlComment* target ) const in CopyTo() 1314 bool TiXmlComment::Accept( TiXmlVisitor* visitor ) const in Accept() 1320 TiXmlNode* TiXmlComment::Clone() const in Clone() 1322 TiXmlComment* clone = new TiXmlComment(); in Clone() 1866 bool TiXmlPrinter::Visit( const TiXmlComment& comment ) in Visit()
|
D | tinyxmlparser.cpp | 859 returnNode = new TiXmlComment(); in Identify() 1310 void TiXmlComment::StreamIn( std::istream * in, TIXML_STRING * tag ) in StreamIn() 1337 const char* TiXmlComment::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 85 class TiXmlComment; variable 148 virtual bool Visit( const TiXmlComment& /*comment*/ ) { return true; } in Visit() argument 699 …virtual const TiXmlComment* ToComment() const { return 0; } ///< Cast to a more defined ty… in ToComment() 706 …virtual TiXmlComment* ToComment() { return 0; } ///< Cast to a more defined type. Wi… in ToComment() 1162 class TiXmlComment : public TiXmlNode 1166 TiXmlComment() : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) {} in TiXmlComment() function 1168 TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { in TiXmlComment() function 1171 TiXmlComment( const TiXmlComment& ); 1172 TiXmlComment& operator=( const TiXmlComment& base ); 1174 virtual ~TiXmlComment() {} in ~TiXmlComment() [all …]
|
D | tinyxml.cpp | 1283 TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) in TiXmlComment() function in TiXmlComment 1289 TiXmlComment& TiXmlComment::operator=( const TiXmlComment& base ) in operator =() 1297 void TiXmlComment::Print( FILE* cfile, int depth ) const in Print() 1308 void TiXmlComment::CopyTo( TiXmlComment* target ) const in CopyTo() 1314 bool TiXmlComment::Accept( TiXmlVisitor* visitor ) const in Accept() 1320 TiXmlNode* TiXmlComment::Clone() const in Clone() 1322 TiXmlComment* clone = new TiXmlComment(); in Clone() 1866 bool TiXmlPrinter::Visit( const TiXmlComment& comment ) in Visit()
|
D | tinyxmlparser.cpp | 859 returnNode = new TiXmlComment(); in Identify() 1310 void TiXmlComment::StreamIn( std::istream * in, TIXML_STRING * tag ) in StreamIn() 1337 const char* TiXmlComment::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
|
/external/tinyxml/ |
D | tinyxml.h | 87 class TiXmlComment; variable 638 …const TiXmlComment* ToComment() const { return ( this && type == COMMENT ) ? (const TiXmlComme… in ToComment() 645 …TiXmlComment* ToComment() { return ( this && type == COMMENT ) ? (TiXmlComment*) this : 0; } … in ToComment() 1022 class TiXmlComment : public TiXmlNode 1026 TiXmlComment() : TiXmlNode( TiXmlNode::COMMENT ) {} in TiXmlComment() function 1027 TiXmlComment( const TiXmlComment& ); 1028 void operator=( const TiXmlComment& base ); 1030 virtual ~TiXmlComment() {} in ~TiXmlComment() 1043 void CopyTo( TiXmlComment* target ) const;
|
D | tinyxml.cpp | 1277 TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::COMMENT ) in TiXmlComment() function in TiXmlComment 1283 void TiXmlComment::operator=( const TiXmlComment& base ) in operator =() 1290 void TiXmlComment::Print( FILE* cfile, int depth ) const in Print() 1299 void TiXmlComment::StreamOut( TIXML_OSTREAM * stream ) const in StreamOut() 1308 void TiXmlComment::CopyTo( TiXmlComment* target ) const in CopyTo() 1314 TiXmlNode* TiXmlComment::Clone() const in Clone() 1316 TiXmlComment* clone = new TiXmlComment(); in Clone()
|
D | xmltest.cpp | 392 TiXmlComment* comment = commentHandle.Node()->ToComment(); in main() 593 TiXmlComment comment; in main() 595 TiXmlComment commentCopy( comment ); in main() 596 TiXmlComment commentAssign; in main() 898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment(); in main()
|
D | tinyxmlparser.cpp | 837 returnNode = new TiXmlComment(); in Identify() 1265 void TiXmlComment::StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag ) in StreamIn() 1292 const char* TiXmlComment::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
|
D | readme.txt | 397 A comment. Will become a TiXmlComment object. 432 TiXmlComment " Our to do list data"
|