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

  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement.h 162 XmlChild* FirstChild();
163 const XmlChild* FirstChild() const {
164 return const_cast<XmlElement *>(this)->FirstChild();
xmlelement.cc 248 XmlChild* XmlElement::FirstChild() {
454 for (child = FirstChild(); child; child = next_child) {
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 140 firstChild = 0;
149 TiXmlNode* node = firstChild;
171 TiXmlNode* node = firstChild;
181 firstChild = 0;
207 firstChild = node; // it was an empty list.
255 assert( firstChild == beforeThis );
256 firstChild = node;
327 firstChild = node;
355 firstChild = removeThis->next;
361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) cons
    [all...]
tinyxml.h 522 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
523 TiXmlNode* FirstChild() { return firstChild; }
524 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
526 TiXmlNode* FirstChild( const char * _value ) {
529 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value ));
540 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
541 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 140 firstChild = 0;
149 TiXmlNode* node = firstChild;
171 TiXmlNode* node = firstChild;
181 firstChild = 0;
207 firstChild = node; // it was an empty list.
255 assert( firstChild == beforeThis );
256 firstChild = node;
327 firstChild = node;
355 firstChild = removeThis->next;
361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) cons
    [all...]
tinyxml.h 522 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
523 TiXmlNode* FirstChild() { return firstChild; }
524 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
526 TiXmlNode* FirstChild( const char * _value ) {
529 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value ));
540 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
541 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 73 WSDXML_NODE *FirstChild;
hidpi.h 195 USHORT FirstChild;
  /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...]
  /external/tinyxml2/
tinyxml2.h 478 bool NoChildren() const { return !firstChild; }
481 const XMLNode* FirstChild() const { return firstChild; }
482 XMLNode* FirstChild() { return firstChild; }
596 XMLNode* firstChild;
    [all...]

Completed in 197 milliseconds