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

Method append_child

Tools/EditorFramework/pugixml.cpp:4804–4815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4802 }
4803
4804 PUGI__FN xml_node xml_node::append_child(xml_node_type type_)
4805 {
4806 if (!impl::allow_insert_child(this->type(), type_))
4807 return xml_node();
4808
4809 xml_node n(impl::append_node(_root, impl::get_allocator(_root), type_));
4810
4811 if (type_ == node_declaration)
4812 n.set_name(PUGIXML_TEXT("xml"));
4813
4814 return n;
4815 }
4816
4817 PUGI__FN xml_node xml_node::prepend_child(xml_node_type type_)
4818 {

Callers 15

generateSkinMethod · 0.45
serializationMethod · 0.45
writeSkinMethod · 0.45
writeRegionMethod · 0.45
writeStateMethod · 0.45
writeStateTextMethod · 0.45
SettingsManagerMethod · 0.45
setValueImplMethod · 0.45
mergeNodesMethod · 0.45
setValueListImplMethod · 0.45
recursive_copy_skipFunction · 0.45
_data_newMethod · 0.45

Calls 4

allow_insert_childFunction · 0.70
xml_nodeClass · 0.70
typeMethod · 0.45
set_nameMethod · 0.45

Tested by 1

generateSkinMethod · 0.36