Home | History | Annotate | Download | only in libxml2

Lines Matching defs:att

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