Home
last modified time | relevance | path

Searched refs:TiXmlNode (Results 1 – 5 of 5) sorted by relevance

/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h196 friend class TiXmlNode; variable
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();
519 TiXmlNode* Parent() { return parent; } in Parent()
520 const TiXmlNode* Parent() const { return parent; } in Parent()
522 …const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Wil… in FirstChild()
523 TiXmlNode* FirstChild() { return firstChild; } in FirstChild()
[all …]
Dtinyxml.cpp136 TiXmlNode::TiXmlNode( NodeType _type ) : TiXmlBase() in TiXmlNode() function in TiXmlNode
147 TiXmlNode::~TiXmlNode() in ~TiXmlNode()
149 TiXmlNode* node = firstChild; in ~TiXmlNode()
150 TiXmlNode* temp = 0; in ~TiXmlNode()
161 void TiXmlNode::CopyTo( TiXmlNode* target ) const in CopyTo()
169 void TiXmlNode::Clear() in Clear()
171 TiXmlNode* node = firstChild; in Clear()
172 TiXmlNode* temp = 0; in Clear()
186 TiXmlNode* TiXmlNode::LinkEndChild( TiXmlNode* node ) in LinkEndChild()
191 if ( node->Type() == TiXmlNode::TINYXML_DOCUMENT ) in LinkEndChild()
[all …]
Dtinyxmlparser.cpp675 TiXmlNode* node = Identify( tag->c_str() + tagIndex, TIXML_DEFAULT_ENCODING ); in StreamIn()
756 TiXmlNode* node = Identify( p, encoding ); in Parse()
818 TiXmlNode* TiXmlNode::Identify( const char* p, TiXmlEncoding encoding ) in Identify()
820 TiXmlNode* returnNode = 0; in Identify()
1029 TiXmlNode* node = Identify( tagloc, TIXML_DEFAULT_ENCODING ); in StreamIn()
1226 TiXmlNode* node = Identify( p, encoding ); in ReadValue()
/external/sfntly/cpp/src/test/
Dtest_xml_utils.cc23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name, in InternalGetNodesWithName()
27 for (const TiXmlNode* child = node->FirstChild(); in InternalGetNodesWithName()
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node, in GetNodesWithName()
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node, in GetAttribute()
Dtest_xml_utils.h25 typedef std::vector<const TiXmlNode*> TiXmlNodeVector;
27 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node,
29 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,