Home
last modified time | relevance | path

Searched refs:NextSiblingElement (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/tools/xml2sdb/
H A Dtinyxml2.h766 const XMLElement* NextSiblingElement( const char* name = 0 ) const;
768 XMLElement* NextSiblingElement( const char* name = 0 ) {
769 … return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( name ) );
1838 XMLHandle NextSiblingElement( const char* name = 0 ) {
1839 return XMLHandle( _node ? _node->NextSiblingElement( name ) : 0 );
1911 const XMLConstHandle NextSiblingElement( const char* name = 0 ) const {
1912 return XMLConstHandle( _node ? _node->NextSiblingElement( name ) : 0 );
H A Dxml2sdb.cpp276 node = node.NextSiblingElement(nodeName); in ReadGeneric()
H A Dtinyxml2.cpp904 const XMLElement* XMLNode::NextSiblingElement( const char* name ) const in NextSiblingElement() function in tinyxml2::XMLNode