Home | History | Annotate | Download | only in libxml2

Lines Matching full:enc

2393 		    xmlCharEncoding enc;
2406 * if enc != XML_CHAR_ENCODING_NONE
2419 enc = xmlDetectCharEncoding(start, 4);
2420 if (enc != XML_CHAR_ENCODING_NONE) {
2421 xmlSwitchEncoding(ctxt, enc);
6530 xmlCharEncoding enc;
6536 enc = xmlDetectCharEncoding(start, 4);
6537 if (enc != XML_CHAR_ENCODING_NONE)
6538 xmlSwitchEncoding(ctxt, enc);
9998 xmlCharEncoding enc;
10022 * if enc != XML_CHAR_ENCODING_NONE
10029 enc = xmlDetectCharEncoding(&start[0], 4);
10030 if (enc != XML_CHAR_ENCODING_NONE) {
10031 xmlSwitchEncoding(ctxt, enc);
10172 xmlCharEncoding enc;
10191 * if enc != XML_CHAR_ENCODING_NONE
10199 enc = xmlDetectCharEncoding(start, 4);
10200 if (enc != XML_CHAR_ENCODING_NONE) {
10201 xmlSwitchEncoding(ctxt, enc);
10597 xmlCharEncoding enc;
10607 * if enc != XML_CHAR_ENCODING_NONE
10616 enc = xmlDetectCharEncoding(start, 4);
10617 xmlSwitchEncoding(ctxt, enc);
11543 xmlCharEncoding enc = XML_CHAR_ENCODING_NONE;
11549 enc = xmlDetectCharEncoding((const xmlChar *) chunk, size);
11551 buf = xmlAllocParserInputBuffer(enc);
11642 if (enc != XML_CHAR_ENCODING_NONE) {
11643 xmlSwitchEncoding(ctxt, enc);
11675 * @enc: the charset encoding if known
11685 void *ioctx, xmlCharEncoding enc) {
11692 buf = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx, enc);
11720 inputStream = xmlNewIOInputStream(ctxt, buf, enc);
11741 * @enc: the charset encoding if known
11751 xmlCharEncoding enc) {
11797 if (enc != XML_CHAR_ENCODING_NONE) {
11798 xmlSwitchEncoding(ctxt, enc);
11821 if ((enc == XML_CHAR_ENCODING_NONE) &&
11825 * if enc != XML_CHAR_ENCODING_NONE
11832 enc = xmlDetectCharEncoding(start, 4);
11833 if (enc != XML_CHAR_ENCODING_NONE) {
11834 xmlSwitchEncoding(ctxt, enc);
11883 xmlCharEncoding enc;
11938 enc = xmlDetectCharEncoding(ctxt->input->cur, 4);
11939 xmlSwitchEncoding(ctxt, enc);
12043 xmlCharEncoding enc;
12122 * if enc != XML_CHAR_ENCODING_NONE
12131 enc = xmlDetectCharEncoding(start, 4);
12132 if (enc != XML_CHAR_ENCODING_NONE) {
12133 xmlSwitchEncoding(ctxt, enc);
12258 xmlCharEncoding enc;
12340 * if enc != XML_CHAR_ENCODING_NONE
12349 enc = xmlDetectCharEncoding(start, 4);
12350 if (enc != XML_CHAR_ENCODING_NONE) {
12351 xmlSwitchEncoding(ctxt, enc);
14017 xmlCharEncoding enc = XML_CHAR_ENCODING_NONE;
14023 enc = xmlDetectCharEncoding((const xmlChar *) chunk, size);
14025 buf = xmlAllocParserInputBuffer(enc);
14102 } else if (enc != XML_CHAR_ENCODING_NONE) {
14103 xmlSwitchEncoding(ctxt, enc);