Lines Matching refs:attvalue
8537 xmlChar *attvalue; in xmlParseStartTag() local
8567 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag()
8568 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag()
8577 xmlFree(attvalue); in xmlParseStartTag()
8590 if (attvalue != NULL) in xmlParseStartTag()
8591 xmlFree(attvalue); in xmlParseStartTag()
8604 if (attvalue != NULL) in xmlParseStartTag()
8605 xmlFree(attvalue); in xmlParseStartTag()
8613 atts[nbatts++] = attvalue; in xmlParseStartTag()
8617 if (attvalue != NULL) in xmlParseStartTag()
8618 xmlFree(attvalue); in xmlParseStartTag()
8631 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag()
9263 xmlChar *attvalue; in xmlParseStartTag2() local
9316 &aprefix, &attvalue, &len, &alloc); in xmlParseStartTag2()
9317 if ((attname == NULL) || (attvalue == NULL)) in xmlParseStartTag2()
9319 if (len < 0) len = xmlStrlen(attvalue); in xmlParseStartTag2()
9322 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); in xmlParseStartTag2()
9327 if ((attvalue != NULL) && (alloc != 0)) in xmlParseStartTag2()
9328 xmlFree(attvalue); in xmlParseStartTag2()
9375 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); in xmlParseStartTag2()
9467 atts[nbatts++] = attvalue; in xmlParseStartTag2()
9468 attvalue += len; in xmlParseStartTag2()
9469 atts[nbatts++] = attvalue; in xmlParseStartTag2()
9474 attvalue = NULL; /* moved into atts */ in xmlParseStartTag2()
9478 if ((attvalue != NULL) && (alloc != 0)) { in xmlParseStartTag2()
9479 xmlFree(attvalue); in xmlParseStartTag2()
9480 attvalue = NULL; in xmlParseStartTag2()
9494 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag2()