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

Method child_value

Tools/EditorFramework/pugixml.cpp:4591–4601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4589 }
4590
4591 PUGI__FN const char_t* xml_node::child_value() const
4592 {
4593 if (!_root)
4594 return PUGIXML_TEXT("");
4595
4596 for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling)
4597 if (i->value && impl::is_text_node(i))
4598 return i->value;
4599
4600 return PUGIXML_TEXT("");
4601 }
4602
4603 PUGI__FN const char_t* xml_node::child_value(const char_t* name_) const
4604 {

Callers 8

LoadStatesMethod · 0.45
LoadStatesMethod · 0.45
getValueMethod · 0.45
getValueListMethod · 0.45
deserializationMethod · 0.45
deserializationMethod · 0.45
LoadStatesMethod · 0.45
LoadStatesMethod · 0.45

Calls 1

is_text_nodeFunction · 0.70

Tested by

no test coverage detected