Home | History | Annotate | Download | only in libxml2

Lines Matching refs:att

1385     const xmlChar *att;
1428 att = NULL;
1431 att = atts[i];
1432 while (att != NULL) {
1433 if (xmlStrEqual(att, fulln))
1436 att = atts[i];
1439 if (att == NULL) {
1493 att = NULL;
1496 att = atts[i];
1497 while (att != NULL) {
1498 if (xmlStrEqual(att, fulln))
1501 att = atts[i];
1504 if (att == NULL) {
1541 const xmlChar *att;
1645 att = atts[i++];
1648 while ((att != NULL) && (value != NULL)) {
1649 if ((att[0] == 'x') && (att[1] == 'm') && (att[2] == 'l') &&
1650 (att[3] == 'n') && (att[4] == 's'))
1651 xmlSAX2AttributeInternal(ctxt, att, value, prefix);
1653 att = atts[i++];
1686 att = atts[i++];
1689 while (att != NULL) {
1690 xmlSAX2AttributeInternal(ctxt, att, value, NULL);
1691 att = atts[i++];
1695 while ((att != NULL) && (value != NULL)) {
1696 if ((att[0] != 'x') || (att[1] != 'm') || (att[2] != 'l') ||
1697 (att[3] != 'n') || (att[4] != 's'))
1698 xmlSAX2AttributeInternal(ctxt, att, value, NULL);
1703 att = atts[i++];