Searched refs:NextSiblingElement (Results 1 - 5 of 5) sorted by relevance

/external/tinyxml/
H A Dtinyxml.h593 const TiXmlElement* NextSiblingElement() const;
594 TiXmlElement* NextSiblingElement();
600 const TiXmlElement* NextSiblingElement( const char * ) const;
601 TiXmlElement* NextSiblingElement( const char * );
604 const TiXmlElement* NextSiblingElement( const std::string& _value) const { return NextSiblingElement (_value.c_str ()); } ///< STL std::string form. function in class:TiXmlNode
605 TiXmlElement* NextSiblingElement( const std::string& _value) { return NextSiblingElement (_value.c_str ()); } ///< STL std::string form. function in class:TiXmlNode
1396 TiXmlElement* child2 = child->NextSiblingElement( "Child" );
1442 for( child; child; child=child->NextSiblingElement() )
[all...]
H A Dtinyxml.cpp530 const TiXmlElement* TiXmlNode::NextSiblingElement() const function in class:TiXmlNode
544 TiXmlElement* TiXmlNode::NextSiblingElement() function in class:TiXmlNode
558 const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const function in class:TiXmlNode
572 TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) function in class:TiXmlNode
1711 child = child->NextSiblingElement(), ++i )
1730 child = child->NextSiblingElement( value ), ++i )
H A Dxmltest.cpp176 itemElement = itemElement->NextSiblingElement();
183 itemElement = itemElement->NextSiblingElement();
308 element = element->NextSiblingElement() )
/external/tinyxml2/
H A Dtinyxml2.h512 const XMLElement* NextSiblingElement( const char* value=0 ) const;
513 XMLElement* NextSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( _value ) ); } function in class:tinyxml2::XMLNode
1231 XMLElement* child2 = child->NextSiblingElement( "Child" );
1285 XMLHandle NextSiblingElement( const char* _value=0 ) { return XMLHandle( node ? node->NextSiblingElement( _value ) : 0 ); } function in class:tinyxml2::XMLHandle
1323 const XMLConstHandle NextSiblingElement( const char* _value=0 ) const { return XMLConstHandle( node ? node->NextSiblingElement( _value ) : 0 ); } function in class:tinyxml2::XMLConstHandle
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp176 for(section = root->FirstChildElement(); section; section = section->NextSiblingElement())
195 for(key = section->FirstChildElement(); key; key = key->NextSiblingElement())
205 for(value = key->FirstChildElement(); value; value = value->NextSiblingElement())

Completed in 108 milliseconds