• Home
  • Raw
  • Download

Lines Matching refs:attvalue

8540     xmlChar *attvalue;  in xmlParseStartTag()  local
8570 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag()
8571 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag()
8580 xmlFree(attvalue); in xmlParseStartTag()
8593 if (attvalue != NULL) in xmlParseStartTag()
8594 xmlFree(attvalue); in xmlParseStartTag()
8607 if (attvalue != NULL) in xmlParseStartTag()
8608 xmlFree(attvalue); in xmlParseStartTag()
8616 atts[nbatts++] = attvalue; in xmlParseStartTag()
8620 if (attvalue != NULL) in xmlParseStartTag()
8621 xmlFree(attvalue); in xmlParseStartTag()
8634 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag()
9266 xmlChar *attvalue; in xmlParseStartTag2() local
9319 &aprefix, &attvalue, &len, &alloc); in xmlParseStartTag2()
9320 if ((attname == NULL) || (attvalue == NULL)) in xmlParseStartTag2()
9322 if (len < 0) len = xmlStrlen(attvalue); in xmlParseStartTag2()
9325 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); in xmlParseStartTag2()
9330 if ((attvalue != NULL) && (alloc != 0)) in xmlParseStartTag2()
9331 xmlFree(attvalue); in xmlParseStartTag2()
9378 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); in xmlParseStartTag2()
9470 atts[nbatts++] = attvalue; in xmlParseStartTag2()
9471 attvalue += len; in xmlParseStartTag2()
9472 atts[nbatts++] = attvalue; in xmlParseStartTag2()
9477 attvalue = NULL; /* moved into atts */ in xmlParseStartTag2()
9481 if ((attvalue != NULL) && (alloc != 0)) { in xmlParseStartTag2()
9482 xmlFree(attvalue); in xmlParseStartTag2()
9483 attvalue = NULL; in xmlParseStartTag2()
9497 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag2()