Home
last modified time | relevance | path

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

/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h85 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 …]
Dtinyxml.cpp1283 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()
Dtinyxmlparser.cpp859 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()