Home | History | Annotate | Download | only in xmllite

Lines Matching refs:att

81   const char **att;
83 for (att = atts; *att; att += 2) {
84 if (XmlParser_StartsWithXmlns(*att)) {
85 if ((*att)[5] == '\0') {
86 context_.StartNamespace("", *(att + 1));
88 else if ((*att)[5] == ':') {
89 if (**(att + 1) == '\0') {
94 context_.StartNamespace((*att) + 6, *(att + 1));