Home | History | Annotate | Download | only in xmllite

Lines Matching defs:att

98   const char **att;
100 for (att = atts; *att; att += 2) {
101 if (XmlParser_StartsWithXmlns(*att)) {
102 if ((*att)[5] == '\0') {
103 context_.StartNamespace("", *(att + 1));
105 else if ((*att)[5] == ':') {
106 if (**(att + 1) == '\0') {
111 context_.StartNamespace((*att) + 6, *(att + 1));