MCPcopy Create free account
hub / github.com/MyGUI/mygui / next_sibling

Method next_sibling

Tools/EditorFramework/pugixml.cpp:4524–4534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4522 }
4523
4524 PUGI__FN xml_node xml_node::next_sibling(const char_t* name_) const
4525 {
4526 if (!_root)
4527 return xml_node();
4528
4529 for (xml_node_struct* i = _root->next_sibling; i; i = i->next_sibling)
4530 if (i->name && impl::strequal(name_, i->name))
4531 return xml_node(i);
4532
4533 return xml_node();
4534 }
4535
4536 PUGI__FN xml_node xml_node::next_sibling() const
4537 {

Callers 11

find_childFunction · 0.45
find_nodeFunction · 0.45
node_outputFunction · 0.45
has_declarationFunction · 0.45
recursive_copy_skipFunction · 0.45
traverseMethod · 0.45
pugixml.cppFile · 0.45
resetMethod · 0.45
node_is_beforeFunction · 0.45
step_fillMethod · 0.45

Calls 2

xml_nodeClass · 0.70
strequalFunction · 0.70

Tested by

no test coverage detected