Home
last modified time | relevance | path

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

/external/libxml2/
DHTMLparser.c3448 htmlCheckEncoding(htmlParserCtxtPtr ctxt, const xmlChar *attvalue) { in htmlCheckEncoding() argument
3451 if ((ctxt == NULL) || (attvalue == NULL) || in htmlCheckEncoding()
3459 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset="); in htmlCheckEncoding()
3463 encoding = xmlStrcasestr(attvalue, BAD_CAST"charset ="); in htmlCheckEncoding()
3595 xmlChar *attvalue; in htmlParseStartTag() local
3685 attname = htmlParseAttribute(ctxt, &attvalue); in htmlParseStartTag()
3695 if (attvalue != NULL) in htmlParseStartTag()
3696 xmlFree(attvalue); in htmlParseStartTag()
3710 if (attvalue != NULL) in htmlParseStartTag()
3711 xmlFree(attvalue); in htmlParseStartTag()
[all …]
Dparser.c8187 xmlChar *attvalue; in xmlParseStartTag() local
8217 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag()
8218 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag()
8227 xmlFree(attvalue); in xmlParseStartTag()
8240 if (attvalue != NULL) in xmlParseStartTag()
8241 xmlFree(attvalue); in xmlParseStartTag()
8254 if (attvalue != NULL) in xmlParseStartTag()
8255 xmlFree(attvalue); in xmlParseStartTag()
8263 atts[nbatts++] = attvalue; in xmlParseStartTag()
8267 if (attvalue != NULL) in xmlParseStartTag()
[all …]