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

Function namespace_uri

Source/ThirdParty/pugixml/pugixml.cpp:7449–7465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7447 };
7448
7449 PUGI__FN const char_t* namespace_uri(xml_node node)
7450 {
7451 namespace_uri_predicate pred = node.name();
7452
7453 xml_node p = node;
7454
7455 while (p)
7456 {
7457 xml_attribute a = p.find_attribute(pred);
7458
7459 if (a) return a.value();
7460
7461 p = p.parent();
7462 }
7463
7464 return PUGIXML_TEXT("");
7465 }
7466
7467 PUGI__FN const char_t* namespace_uri(xml_attribute attr, xml_node parent)
7468 {

Callers 1

eval_stringMethod · 0.85

Calls 5

parentMethod · 0.80
attributeMethod · 0.80
nodeMethod · 0.80
nameMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected