Home | History | Annotate | Download | only in libxml2

Lines Matching full:attvalue

324             errmsg = "AttValue: \" or ' expected\n";
3597 * Returns the AttValue parsed or NULL. The value has to be freed by the caller.
3777 "AttValue: ' expected\n");
3801 * [10] AttValue ::= '"' ([^<&"] | Reference)* '"' |
3823 * Returns the AttValue parsed or NULL. The value has to be freed by the caller.
5225 * [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue)
7845 * [41] Attribute ::= Name Eq AttValue
7863 * [NS 11] Attribute ::= QName Eq AttValue
7964 xmlChar *attvalue;
7994 attname = xmlParseAttribute(ctxt, &attvalue);
7995 if ((attname != NULL) && (attvalue != NULL)) {
8004 xmlFree(attvalue);
8017 if (attvalue != NULL)
8018 xmlFree(attvalue);
8031 if (attvalue != NULL)
8032 xmlFree(attvalue);
8040 atts[nbatts++] = attvalue;
8044 if (attvalue != NULL)
8045 xmlFree(attvalue);
8059 (attname == NULL) && (attvalue == NULL)) {
8365 * Returns the AttValue parsed or NULL. The value has to be freed by the
8647 xmlChar *attvalue;
8705 &aprefix, &attvalue, &len, &alloc);
8707 if ((attvalue != NULL) && (alloc != 0))
8708 xmlFree(attvalue);
8709 attvalue = NULL;
8712 if ((attname != NULL) && (attvalue != NULL)) {
8713 if (len < 0) len = xmlStrlen(attvalue);
8715 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
8760 if (alloc != 0) xmlFree(attvalue);
8765 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
8833 if (alloc != 0) xmlFree(attvalue);
8844 if (attvalue[len] == 0)
8845 xmlFree(attvalue);
8855 atts[nbatts++] = attvalue;
8856 attvalue += len;
8857 atts[nbatts++] = attvalue;
8863 if ((attvalue != NULL) && (attvalue[len] == 0))
8864 xmlFree(attvalue);
8880 (attname == NULL) && (attvalue == NULL)) {