MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / insert_copy_before

Method insert_copy_before

Source/ThirdParty/pugixml/pugixml.cpp:5039–5047  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5037 }
5038
5039 PUGI__FN xml_attribute xml_node::insert_copy_before(const xml_attribute& proto, const xml_attribute& attr)
5040 {
5041 if (!proto) return xml_attribute();
5042
5043 xml_attribute result = insert_attribute_before(proto.name(), attr);
5044 result.set_value(proto.value());
5045
5046 return result;
5047 }
5048
5049 PUGI__FN xml_node xml_node::append_child(xml_node_type type_)
5050 {

Callers

nothing calls this directly

Calls 11

insert_attribute_beforeFunction · 0.85
allow_insert_childFunction · 0.85
xml_nodeClass · 0.85
allocate_nodeFunction · 0.85
insert_node_beforeFunction · 0.85
node_copy_treeFunction · 0.85
typeEnum · 0.50
nameMethod · 0.45
set_valueMethod · 0.45
valueMethod · 0.45
typeMethod · 0.45

Tested by

no test coverage detected