HomeSort by relevance Sort by last modified time
    Searched defs:FirstChild (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.h 166 XmlChild * FirstChild();
167 const XmlChild * FirstChild() const
168 { return const_cast<XmlElement *>(this)->FirstChild(); }
xmlelement.cc 251 XmlElement::FirstChild() {
451 for (child = FirstChild(); child; child = next_child) {
  /external/tinyxml/
tinyxml.cpp 148 firstChild = 0;
157 TiXmlNode* node = firstChild;
178 TiXmlNode* node = firstChild;
188 firstChild = 0;
203 firstChild = node; // it was an empty list.
238 assert( firstChild == beforeThis );
239 firstChild = node;
292 firstChild = node;
316 firstChild = removeThis->next;
322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) cons
    [all...]
tinyxml.h 486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
487 TiXmlNode* FirstChild() { return firstChild; }
488 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
489 TiXmlNode* FirstChild( const char * value ); ///< The first child of this node with the matching 'value'. Will be null if none found.
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]

Completed in 48 milliseconds