MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / NextSiblingElement

Method NextSiblingElement

3rdparty/tinyxml2/tinyxml2.cpp:1048–1057  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1046
1047
1048const XMLElement* XMLNode::NextSiblingElement( const char* name ) const
1049{
1050 for( const XMLNode* node = _next; node; node = node->_next ) {
1051 const XMLElement* element = node->ToElementWithName( name );
1052 if ( element ) {
1053 return element;
1054 }
1055 }
1056 return 0;
1057}
1058
1059
1060const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const

Callers 10

NextSiblingElementFunction · 0.80
ChildElementCountMethod · 0.80
parseSubtreeModelPortsFunction · 0.80
loadSubtreeModelMethod · 0.80
loadDocImplMethod · 0.80
VerifyXMLFunction · 0.80
getPortsRecursivelyMethod · 0.80
writeTreeXSDFunction · 0.80
detectMainTreeIdFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected