Home | History | Annotate | Download | only in libxml2

Lines Matching refs:attvalue

2527  * Returns the AttValue parsed or NULL.
2539 "AttValue: \" expected\n", NULL, NULL);
2547 "AttValue: ' expected\n", NULL, NULL);
2557 "AttValue: no value found\n", NULL, NULL);
3242 * [41] Attribute ::= Name Eq AttValue
3248 * [NS 11] Attribute ::= QName Eq AttValue
3291 * @attvalue: the attribute value
3299 htmlCheckEncoding(htmlParserCtxtPtr ctxt, const xmlChar *attvalue) {
3302 if ((ctxt == NULL) || (attvalue == NULL))
3309 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset=");
3313 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset =");
3441 xmlChar *attvalue;
3528 attname = htmlParseAttribute(ctxt, &attvalue);
3538 if (attvalue != NULL)
3539 xmlFree(attvalue);
3553 if (attvalue != NULL)
3554 xmlFree(attvalue);
3567 if (attvalue != NULL)
3568 xmlFree(attvalue);
3576 atts[nbatts++] = attvalue;
3581 if (attvalue != NULL)
3582 xmlFree(attvalue);
3990 * [41] Attribute ::= Name Eq AttValue