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

Method child

Tools/EditorFramework/pugixml.cpp:4500–4510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4498 }
4499
4500 PUGI__FN xml_node xml_node::child(const char_t* name_) const
4501 {
4502 if (!_root)
4503 return xml_node();
4504
4505 for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling)
4506 if (i->name && impl::strequal(name_, i->name))
4507 return xml_node(i);
4508
4509 return xml_node();
4510 }
4511
4512 PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const
4513 {

Callers 7

LoadStatesMethod · 0.45
LoadStatesMethod · 0.45
setValueImplMethod · 0.45
mergeNodesMethod · 0.45
setValueListImplMethod · 0.45
LoadStatesMethod · 0.45
LoadStatesMethod · 0.45

Calls 2

xml_nodeClass · 0.70
strequalFunction · 0.70

Tested by

no test coverage detected