OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TiXmlNode
(Results
1 - 9
of
9
) sorted by null
/external/sfntly/cpp/src/test/
test_xml_utils.h
25
typedef std::vector<const
TiXmlNode
*> TiXmlNodeVector;
27
TiXmlNodeVector* GetNodesWithName(const
TiXmlNode
* node,
29
const TiXmlAttribute* GetAttribute(const
TiXmlNode
* node,
test_xml_utils.cc
23
void InternalGetNodesWithName(const
TiXmlNode
* node, const std::string& name,
27
for (const
TiXmlNode
* child = node->FirstChild();
33
TiXmlNodeVector* GetNodesWithName(const
TiXmlNode
* node,
40
const TiXmlAttribute* GetAttribute(const
TiXmlNode
* node,
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
126
@sa
TiXmlNode
::Accept()
196
friend class
TiXmlNode
;
232
TiXmlDocument::LoadFile(), or any
TiXmlNode
::Parse() is called. It will NOT be set
420
in a document, or stand on its own. The type of a
TiXmlNode
423
class
TiXmlNode
: public TiXmlBase
434
friend std::istream& operator >> (std::istream& in,
TiXmlNode
& base);
452
friend std::ostream& operator<< (std::ostream& out, const
TiXmlNode
& base);
455
friend std::string& operator<< (std::string& out, const
TiXmlNode
& base );
473
virtual ~
TiXmlNode
();
476
TiXmlNode
[
all
...]
tinyxml.cpp
136
TiXmlNode
::
TiXmlNode
( NodeType _type ) : TiXmlBase()
147
TiXmlNode
::~
TiXmlNode
()
149
TiXmlNode
* node = firstChild;
150
TiXmlNode
* temp = 0;
161
void
TiXmlNode
::CopyTo(
TiXmlNode
* target ) const
169
void
TiXmlNode
::Clear()
171
TiXmlNode
* node = firstChild
[
all
...]
tinyxmlparser.cpp
675
TiXmlNode
* node = Identify( tag->c_str() + tagIndex, TIXML_DEFAULT_ENCODING );
756
TiXmlNode
* node = Identify( p, encoding );
818
TiXmlNode
*
TiXmlNode
::Identify( const char* p, TiXmlEncoding encoding )
820
TiXmlNode
* returnNode = 0;
1029
TiXmlNode
* node = Identify( tagloc, TIXML_DEFAULT_ENCODING );
1226
TiXmlNode
* node = Identify( p, encoding );
[
all
...]
/external/tinyxml/
tinyxml.h
154
friend class
TiXmlNode
;
186
TiXmlDocument::LoadFile(), or any
TiXmlNode
::Parse() is called. It will NOT be set
379
in a document, or stand on its own. The type of a
TiXmlNode
382
class
TiXmlNode
: public TiXmlBase
393
friend std::istream& operator >> (std::istream& in,
TiXmlNode
& base);
411
friend std::ostream& operator<< (std::ostream& out, const
TiXmlNode
& base);
414
friend std::string& operator<< (std::string& out, const
TiXmlNode
& base );
418
friend TIXML_OSTREAM& operator<< (TIXML_OSTREAM& out, const
TiXmlNode
& base);
435
virtual ~
TiXmlNode
();
438
TiXmlNode
[
all
...]
tinyxml.cpp
144
TiXmlNode
::
TiXmlNode
( NodeType _type ) : TiXmlBase()
155
TiXmlNode
::~
TiXmlNode
()
157
TiXmlNode
* node = firstChild;
158
TiXmlNode
* temp = 0;
169
void
TiXmlNode
::CopyTo(
TiXmlNode
* target ) const
176
void
TiXmlNode
::Clear()
178
TiXmlNode
* node = firstChild
[
all
...]
tinyxmlparser.cpp
652
TiXmlNode
* node = Identify( tag->c_str() + tagIndex, TIXML_DEFAULT_ENCODING );
733
TiXmlNode
* node = Identify( p, encoding );
795
TiXmlNode
*
TiXmlNode
::Identify( const char* p, TiXmlEncoding encoding )
797
TiXmlNode
* returnNode = 0;
1000
TiXmlNode
* node = Identify( tagloc, TIXML_DEFAULT_ENCODING );
1182
TiXmlNode
* node = Identify( p, encoding );
[
all
...]
xmltest.cpp
149
TiXmlNode
* node = 0;
739
TiXmlNode
* childNode0 = parent.InsertEndChild( childText0 );
740
TiXmlNode
* childNode1 = parent.InsertBeforeChild( childNode0, childText1 );
750
TiXmlNode
* childNode0 = parent.InsertEndChild( childText0 );
751
TiXmlNode
* childNode1 = parent.InsertAfterChild( childNode0, childText1 );
882
TiXmlNode
* node = docH.Child( 2 ).Node();
Completed in 87 milliseconds