Home | History | Annotate | Download | only in xmllite

Lines Matching defs:att

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