| 7219 | } |
| 7220 | |
| 7221 | bool operator()(const xml_attribute& a) const |
| 7222 | { |
| 7223 | const char_t* name = a.name(); |
| 7224 | |
| 7225 | if (!starts_with(name, PUGIXML_TEXT("xmlns"))) |
| 7226 | return false; |
| 7227 | |
| 7228 | return prefix ? name[5] == ':' && strequalrange(name + 6, prefix, prefix_length) : name[5] == 0; |
| 7229 | } |
| 7230 | }; |
| 7231 | |
| 7232 | PUGI__FN const char_t* namespace_uri(const xml_node& node) |
nothing calls this directly
no test coverage detected