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

Method attribute

Source/ThirdParty/pugixml/pugixml.cpp:4826–4835  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4824 }
4825
4826 PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const
4827 {
4828 if (!_root) return xml_attribute();
4829
4830 for (xml_attribute_struct* i = _root->first_attribute; i; i = i->next_attribute)
4831 if (i->name && impl::strequal(name_, i->name))
4832 return xml_attribute(i);
4833
4834 return xml_attribute();
4835 }
4836
4837 PUGI__FN xml_node xml_node::next_sibling(const char_t* name_) const
4838 {

Callers 15

document_buffer_orderFunction · 0.80
operator()Method · 0.80
operator()Method · 0.80
qualified_nameFunction · 0.80
namespace_uriFunction · 0.80
step_fillMethod · 0.80
eval_booleanMethod · 0.80
eval_node_setMethod · 0.80
to_intMethod · 0.80
hasAttributeMethod · 0.80
getUIntAttributeMethod · 0.80

Calls 1

strequalFunction · 0.70

Tested by

no test coverage detected