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

Function node_output_end

Source/ThirdParty/pugixml/pugixml.cpp:3528–3536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3526 }
3527
3528 PUGI__FN void node_output_end(xml_buffered_writer& writer, xml_node_struct* node)
3529 {
3530 const char_t* default_name = PUGIXML_TEXT(":anonymous");
3531 const char_t* name = node->name ? node->name : default_name;
3532
3533 writer.write('<', '/');
3534 writer.write_string(name);
3535 writer.write('>');
3536 }
3537
3538 PUGI__FN void node_output_simple(xml_buffered_writer& writer, xml_node_struct* node, unsigned int flags)
3539 {

Callers 1

node_outputFunction · 0.85

Calls 2

write_stringMethod · 0.80
writeMethod · 0.45

Tested by

no test coverage detected