Home | History | Annotate | Download | only in libxml2

Lines Matching refs:charset

692  *  - The Content-Type, Mime-Type and charset used
737 const xmlChar *charset, *last, *mime;
751 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
752 if (charset != NULL) {
753 charset += 8;
754 last = charset;
760 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
763 const xmlChar *charset, *last, *mime;
776 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
777 if (charset != NULL) {
778 charset += 8;
779 last = charset;
785 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);