Home | History | Annotate | Download | only in libxml2

Lines Matching defs:att

1432     const xmlChar *att;
1479 att = NULL;
1482 att = atts[i];
1483 while (att != NULL) {
1484 if (xmlStrEqual(att, fulln))
1487 att = atts[i];
1490 if (att == NULL) {
1545 att = NULL;
1548 att = atts[i];
1549 while (att != NULL) {
1550 if (xmlStrEqual(att, fulln))
1553 att = atts[i];
1556 if (att == NULL) {
1593 const xmlChar *att;
1697 att = atts[i++];
1700 while ((att != NULL) && (value != NULL)) {
1701 if ((att[0] == 'x') && (att[1] == 'm') && (att[2] == 'l') &&
1702 (att[3] == 'n') && (att[4] == 's'))
1703 xmlSAX2AttributeInternal(ctxt, att, value, prefix);
1705 att = atts[i++];
1738 att = atts[i++];
1741 while (att != NULL) {
1742 xmlSAX2AttributeInternal(ctxt, att, value, NULL);
1743 att = atts[i++];
1747 while ((att != NULL) && (value != NULL)) {
1748 if ((att[0] != 'x') || (att[1] != 'm') || (att[2] != 'l') ||
1749 (att[3] != 'n') || (att[4] != 's'))
1750 xmlSAX2AttributeInternal(ctxt, att, value, NULL);
1755 att = atts[i++];