OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TiXmlDeclaration
(Results
1 - 5
of
5
) sorted by null
/external/tinyxml/
tinyxml.cpp
1387
TiXmlDeclaration
::
TiXmlDeclaration
( const char * _version,
1399
TiXmlDeclaration
::
TiXmlDeclaration
( const std::string& _version,
1411
TiXmlDeclaration
::
TiXmlDeclaration
( const
TiXmlDeclaration
& copy )
1418
void
TiXmlDeclaration
::operator=( const
TiXmlDeclaration
& copy )
1425
void
TiXmlDeclaration
::Print( FILE* cfile, int /*depth*/ ) cons
[
all
...]
tinyxml.h
91
class
TiXmlDeclaration
;
641
const
TiXmlDeclaration
* ToDeclaration() const { return ( this && type == DECLARATION ) ? (const
TiXmlDeclaration
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
648
TiXmlDeclaration
* ToDeclaration() { return ( this && type == DECLARATION ) ? (
TiXmlDeclaration
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
xmltest.cpp
385
TiXmlDeclaration
* declaration = doc.FirstChild()->ToDeclaration();
530
TiXmlDeclaration
* dec = docH.Child( 0 ).Node()->ToDeclaration();
617
TiXmlDeclaration
dec;
619
TiXmlDeclaration
decCopy( dec );
620
TiXmlDeclaration
decAssign;
tinyxmlparser.cpp
748
TiXmlDeclaration
* dec = node->ToDeclaration();
830
returnNode = new
TiXmlDeclaration
();
[
all
...]
/external/collada/src/dae/
daeTinyXMLPlugin.cpp
139
TiXmlDeclaration
* decl = new
TiXmlDeclaration
( "1.0", "", "" );
Completed in 78 milliseconds