| 7211 | size_t prefix_length; |
| 7212 | |
| 7213 | namespace_uri_predicate(const char_t* name) |
| 7214 | { |
| 7215 | const char_t* pos = find_char(name, ':'); |
| 7216 | |
| 7217 | prefix = pos ? name : 0; |
| 7218 | prefix_length = pos ? static_cast<size_t>(pos - name) : 0; |
| 7219 | } |
| 7220 | |
| 7221 | bool operator()(const xml_attribute& a) const |
| 7222 | { |
nothing calls this directly
no test coverage detected