Home
last modified time | relevance | path

Searched refs:attvalue (Results 1 – 2 of 2) sorted by relevance

/external/libxml2/
DHTMLparser.c3299 htmlCheckEncoding(htmlParserCtxtPtr ctxt, const xmlChar *attvalue) { in htmlCheckEncoding() argument
3302 if ((ctxt == NULL) || (attvalue == NULL)) in htmlCheckEncoding()
3309 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset="); in htmlCheckEncoding()
3313 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset ="); in htmlCheckEncoding()
3441 xmlChar *attvalue; in htmlParseStartTag() local
3528 attname = htmlParseAttribute(ctxt, &attvalue); in htmlParseStartTag()
3538 if (attvalue != NULL) in htmlParseStartTag()
3539 xmlFree(attvalue); in htmlParseStartTag()
3553 if (attvalue != NULL) in htmlParseStartTag()
3554 xmlFree(attvalue); in htmlParseStartTag()
[all …]
Dparser.c7964 xmlChar *attvalue; in xmlParseStartTag() local
7994 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag()
7995 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag()
8004 xmlFree(attvalue); in xmlParseStartTag()
8017 if (attvalue != NULL) in xmlParseStartTag()
8018 xmlFree(attvalue); in xmlParseStartTag()
8031 if (attvalue != NULL) in xmlParseStartTag()
8032 xmlFree(attvalue); in xmlParseStartTag()
8040 atts[nbatts++] = attvalue; in xmlParseStartTag()
8044 if (attvalue != NULL) in xmlParseStartTag()
[all …]