Home | History | Annotate | Download | only in libxml2

Lines Matching refs:attvalue

398             errmsg = "AttValue: \" or ' expected";
4012 * Returns the AttValue parsed or NULL. The value has to be freed by the caller.
4059 "AttValue length too long\n");
4221 "AttValue: ' expected\n");
4232 "AttValue length too long\n");
4257 * [10] AttValue ::= '"' ([^<&"] | Reference)* '"' |
4279 * Returns the AttValue parsed or NULL. The value has to be freed by the caller.
5760 * [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue)
8512 * [41] Attribute ::= Name Eq AttValue
8530 * [NS 11] Attribute ::= QName Eq AttValue
8631 xmlChar *attvalue;
8661 attname = xmlParseAttribute(ctxt, &attvalue);
8662 if ((attname != NULL) && (attvalue != NULL)) {
8671 xmlFree(attvalue);
8684 if (attvalue != NULL)
8685 xmlFree(attvalue);
8698 if (attvalue != NULL)
8699 attvalue);
8707 atts[nbatts++] = attvalue;
8711 if (attvalue != NULL)
8712 xmlFree(attvalue);
8726 (attname == NULL) && (attvalue == NULL)) {
9031 * Returns the AttValue parsed or NULL. The value has to be freed by the
9101 "AttValue length too long\n");
9124 "AttValue length too long\n");
9158 "AttValue length too long\n");
9166 "AttValue length too long\n");
9189 "AttValue length too long\n");
9198 "AttValue length too long\n");
9376 xmlChar *attvalue;
9436 &aprefix, &attvalue, &len, &alloc);
9438 if ((attvalue != NULL) && (alloc != 0))
9439 xmlFree(attvalue);
9440 attvalue = NULL;
9443 if ((attname != NULL) && (attvalue != NULL)) {
9444 if (len < 0) len = xmlStrlen(attvalue);
9446 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
9451 if ((attvalue != NULL) && (alloc != 0))
9452 xmlFree(attvalue);
9497 if ((attvalue != NULL) && (alloc != 0)) {
9498 xmlFree(attvalue);
9499 attvalue = NULL;
9514 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
9582 if ((attvalue != NULL) && (alloc != 0)) {
9583 xmlFree(attvalue);
9584 attvalue = NULL;
9604 if (attvalue[len] == 0)
9605 xmlFree(attvalue);
9615 atts[nbatts++] = attvalue;
9616 attvalue += len;
9617 atts[nbatts++] = attvalue;
9623 if ((attvalue != NULL) && (attvalue[len] == 0))
9624 xmlFree(attvalue);
9643 (attname == NULL) && (attvalue == NULL)) {