Lines Matching refs:att
1439 const xmlChar *att; in xmlCheckDefaultedAttributes() local
1486 att = NULL; in xmlCheckDefaultedAttributes()
1489 att = atts[i]; in xmlCheckDefaultedAttributes()
1490 while (att != NULL) { in xmlCheckDefaultedAttributes()
1491 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1494 att = atts[i]; in xmlCheckDefaultedAttributes()
1497 if (att == NULL) { in xmlCheckDefaultedAttributes()
1552 att = NULL; in xmlCheckDefaultedAttributes()
1555 att = atts[i]; in xmlCheckDefaultedAttributes()
1556 while (att != NULL) { in xmlCheckDefaultedAttributes()
1557 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1560 att = atts[i]; in xmlCheckDefaultedAttributes()
1563 if (att == NULL) { in xmlCheckDefaultedAttributes()
1600 const xmlChar *att; in xmlSAX2StartElement() local
1708 att = atts[i++]; in xmlSAX2StartElement()
1711 while ((att != NULL) && (value != NULL)) { in xmlSAX2StartElement()
1712 if ((att[0] == 'x') && (att[1] == 'm') && (att[2] == 'l') && in xmlSAX2StartElement()
1713 (att[3] == 'n') && (att[4] == 's')) in xmlSAX2StartElement()
1714 xmlSAX2AttributeInternal(ctxt, att, value, prefix); in xmlSAX2StartElement()
1716 att = atts[i++]; in xmlSAX2StartElement()
1749 att = atts[i++]; in xmlSAX2StartElement()
1752 while (att != NULL) { in xmlSAX2StartElement()
1753 xmlSAX2AttributeInternal(ctxt, att, value, NULL); in xmlSAX2StartElement()
1754 att = atts[i++]; in xmlSAX2StartElement()
1758 while ((att != NULL) && (value != NULL)) { in xmlSAX2StartElement()
1759 if ((att[0] != 'x') || (att[1] != 'm') || (att[2] != 'l') || in xmlSAX2StartElement()
1760 (att[3] != 'n') || (att[4] != 's')) in xmlSAX2StartElement()
1761 xmlSAX2AttributeInternal(ctxt, att, value, NULL); in xmlSAX2StartElement()
1766 att = atts[i++]; in xmlSAX2StartElement()