OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TiXmlComment
(Results
1 - 4
of
4
) sorted by null
/external/tinyxml/
tinyxml.cpp
1277
TiXmlComment
::
TiXmlComment
( const
TiXmlComment
& copy ) : TiXmlNode( TiXmlNode::COMMENT )
1283
void
TiXmlComment
::operator=( const
TiXmlComment
& base )
1290
void
TiXmlComment
::Print( FILE* cfile, int depth ) const
1299
void
TiXmlComment
::StreamOut( TIXML_OSTREAM * stream ) const
1308
void
TiXmlComment
::CopyTo(
TiXmlComment
* target ) const
1314
TiXmlNode*
TiXmlComment
::Clone() cons
[
all
...]
tinyxml.h
87
class
TiXmlComment
;
638
const
TiXmlComment
* ToComment() const { return ( this && type == COMMENT ) ? (const
TiXmlComment
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
645
TiXmlComment
* ToComment() { return ( this && type == COMMENT ) ? (
TiXmlComment
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
xmltest.cpp
392
TiXmlComment
* comment = commentHandle.Node()->ToComment();
593
TiXmlComment
comment;
595
TiXmlComment
commentCopy( comment );
596
TiXmlComment
commentAssign;
898
TiXmlComment
* comment = docH.Child( 0 ).Node()->ToComment();
tinyxmlparser.cpp
837
returnNode = new
TiXmlComment
();
1265
void
TiXmlComment
::StreamIn( TIXML_ISTREAM * in, TIXML_STRING * tag )
1292
const char*
TiXmlComment
::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding )
[
all
...]
Completed in 36 milliseconds