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

Method attribute

Tools/EditorFramework/pugixml.cpp:4512–4522  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4510 }
4511
4512 PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const
4513 {
4514 if (!_root)
4515 return xml_attribute();
4516
4517 for (xml_attribute_struct* i = _root->first_attribute; i; i = i->next_attribute)
4518 if (i->name && impl::strequal(name_, i->name))
4519 return xml_attribute(i);
4520
4521 return xml_attribute();
4522 }
4523
4524 PUGI__FN xml_node xml_node::next_sibling(const char_t* name_) const
4525 {

Callers 15

generateSkinMethod · 0.45
parseSkinMethod · 0.45
fillStateDataMethod · 0.45
fillSeparatorDataMethod · 0.45
fillRegionDataMethod · 0.45
mergeAttributesMethod · 0.45
document_orderFunction · 0.45
operator()Method · 0.45
operator()Method · 0.45
qualified_nameFunction · 0.45
namespace_uriFunction · 0.45

Calls 1

strequalFunction · 0.70

Tested by 1

generateSkinMethod · 0.36