Home | History | Annotate | Download | only in libxml2

Lines Matching defs:encoding

172 #include <libxml/encoding.h>
1165 #include <libxml/encoding.h>
1534 xmlCharEncoding enc; /* an optional encoding */
1599 char * encoding; /* the document encoding, or NULL */
1613 encoding = gen_const_char_ptr(n_encoding, 3);
1616 ret_val = htmlCtxtReadDoc(ctxt, (const xmlChar *)cur, URL, (const char *)encoding, options);
1622 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
1658 char * encoding; /* the document encoding, or NULL */
1669 encoding = gen_const_char_ptr(n_encoding, 2);
1672 ret_val = htmlCtxtReadFile(ctxt, filename, (const char *)encoding, options);
1677 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
1706 char * encoding; /* the document encoding, or NULL */
1722 encoding = gen_const_char_ptr(n_encoding, 4);
1725 ret_val = htmlCtxtReadMemory(ctxt, (const char *)buffer, size, URL, (const char *)encoding, options);
1732 des_const_char_ptr(n_encoding, (const char *)encoding, 4);
2321 char * encoding; /* a free form C string describing the HTML document encoding, or NULL */
2328 encoding = gen_const_char_ptr(n_encoding, 1);
2330 ret_val = htmlParseDoc(cur, (const char *)encoding);
2334 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
2469 char * encoding; /* a free form C string describing the HTML document encoding, or NULL */
2475 encoding = gen_const_char_ptr(n_encoding, 1);
2477 ret_val = htmlParseFile(filename, (const char *)encoding);
2481 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
2503 char * encoding; /* the document encoding, or NULL */
2515 encoding = gen_const_char_ptr(n_encoding, 2);
2518 ret_val = htmlReadDoc((const xmlChar *)cur, URL, (const char *)encoding, options);
2523 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
2556 char * encoding; /* the document encoding, or NULL */
2566 encoding = gen_const_char_ptr(n_encoding, 1);
2569 ret_val = htmlReadFile(filename, (const char *)encoding, options);
2573 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
2608 char * encoding; /* the document encoding, or NULL */
2622 encoding = gen_const_char_ptr(n_encoding, 3);
2625 ret_val = htmlReadMemory((const char *)buffer, size, URL, (const char *)encoding, options);
2631 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
2666 char * encoding; /* a free form C string describing the HTML document encoding, or NULL */
2679 encoding = gen_const_char_ptr(n_encoding, 1);
2683 ret_val = htmlSAXParseDoc(cur, (const char *)encoding, sax, userData);
2687 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
2721 char * encoding; /* a free form C string describing the HTML document encoding, or NULL */
2734 encoding = gen_const_char_ptr(n_encoding, 1);
2738 ret_val = htmlSAXParseFile(filename, (const char *)encoding, sax, userData);
2742 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
2830 char * encoding; /* the encoding string */
2842 encoding = gen_const_char_ptr(n_encoding, 2);
2845 htmlDocContentDumpFormatOutput(buf, cur, (const char *)encoding, format);
2849 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
2883 char * encoding; /* the encoding string */
2892 encoding = gen_const_char_ptr(n_encoding, 2);
2894 htmlDocContentDumpOutput(buf, cur, (const char *)encoding);
2898 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
3323 char * encoding; /* the document encoding */
3337 encoding = gen_const_char_ptr(n_encoding, 3);
3340 ret_val = htmlNodeDumpFileFormat(out, doc, cur, (const char *)encoding, format);
3346 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
3384 char * encoding; /* the encoding string */
3398 encoding = gen_const_char_ptr(n_encoding, 3);
3401 htmlNodeDumpFormatOutput(buf, doc, cur, (const char *)encoding, format);
3406 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
3444 char * encoding; /* the encoding string */
3455 encoding = gen_const_char_ptr(n_encoding, 3);
3457 htmlNodeDumpOutput(buf, doc, cur, (const char *)encoding);
3462 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
3537 char * encoding; /* the document encoding */
3546 encoding = gen_const_char_ptr(n_encoding, 2);
3548 ret_val = htmlSaveFileEnc(filename, cur, (const char *)encoding);
3553 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
3585 char * encoding; /* the document encoding */
3597 encoding = gen_const_char_ptr(n_encoding, 2);
3600 ret_val = htmlSaveFileFormat(filename, cur, (const char *)encoding, format);
3605 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
3638 xmlChar * encoding; /* the encoding string */
3645 encoding = gen_const_xmlChar_ptr(n_encoding, 1);
3647 ret_val = htmlSetMetaEncoding(doc, (const xmlChar *)encoding);
3651 des_const_xmlChar_ptr(n_encoding, (const xmlChar *)encoding, 1);
8628 char * name; /* the encoding name as parsed, in UTF-8 format (ASCII actually) */
8743 xmlCharEncodingHandler * handler; /* char encoding transformation data structure */
8905 unsigned char * in; /* a pointer to the first bytes of the XML entity, must be at least 2 bytes long (at least 4 if encoding is UTF4 variant). */
8964 xmlCharEncoding enc; /* the encoding */
9053 char * name; /* the encoding name as parsed, in UTF-8 format (ASCII actually) */
9119 if (quiet == 0) printf("Testing encoding : 16 of 19 functions ...\n");
9141 printf("Module encoding: %d errors\n", test_ret);
12775 char * encoding; /* the document encoding, or NULL */
12789 encoding = gen_const_char_ptr(n_encoding, 3);
12792 ret_val = xmlCtxtReadDoc(ctxt, (const xmlChar *)cur, URL, (const char *)encoding, options);
12798 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
12833 char * encoding; /* the document encoding, or NULL */
12845 encoding = gen_const_char_ptr(n_encoding, 2);
12848 ret_val = xmlCtxtReadFile(ctxt, filename, (const char *)encoding, options);
12853 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
12890 char * encoding; /* the document encoding, or NULL */
12906 encoding = gen_const_char_ptr(n_encoding, 4);
12909 ret_val = xmlCtxtReadMemory(ctxt, (const char *)buffer, size, URL, (const char *)encoding, options);
12916 des_const_char_ptr(n_encoding, (const char *)encoding, 4);
12987 char * encoding; /* the document encoding, or NULL */
13000 encoding = gen_const_char_ptr(n_encoding, 4);
13002 ret_val = xmlCtxtResetPush(ctxt, (const char *)chunk, size, filename, (const char *)encoding);
13009 des_const_char_ptr(n_encoding, (const char *)encoding, 4);
13225 xmlCharEncoding enc; /* the charset encoding if known */
13459 xmlCharEncoding enc; /* the charset encoding if known */
14464 char * encoding; /* the document encoding, or NULL */
14476 encoding = gen_const_char_ptr(n_encoding, 2);
14479 ret_val = xmlReadDoc((const xmlChar *)cur, URL, (const char *)encoding, options);
14484 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
14515 char * encoding; /* the document encoding, or NULL */
14525 encoding = gen_const_char_ptr(n_encoding, 1);
14528 ret_val = xmlReadFile(filename, (const char *)encoding, options);
14532 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
14565 char * encoding; /* the document encoding, or NULL */
14579 encoding = gen_const_char_ptr(n_encoding, 3);
14582 ret_val = xmlReadMemory((const char *)buffer, size, URL, (const char *)encoding, options);
14588 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
15470 char * encoding; /* a free form C string describing the HTML document encoding, or NULL */
15477 encoding = gen_const_char_ptr(n_encoding, 1);
15479 ret_val = htmlCreateFileParserCtxt(filename, (const char *)encoding);
15483 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
16652 xmlCharEncoding enc; /* the encoding value (number) */
16693 xmlCharEncodingHandlerPtr handler; /* the encoding handler */
16737 xmlCharEncodingHandlerPtr handler; /* the encoding handler */
20078 char * txt_encoding; /* Character encoding to use when generating XML text */
20184 encoding to use when generating XML text */
22354 char * encoding; /* an optional encoding string */
22369 encoding = gen_const_char_ptr(n_encoding, 5);
22371 xmlNodeDumpOutput(buf, doc, cur, level, format, (const char *)encoding);
22378 des_const_char_ptr(n_encoding, (const char *)encoding, 5);
23115 char * encoding; /* the name of an encoding (or NULL) */
23124 encoding = gen_const_char_ptr(n_encoding, 2);
23126 ret_val = xmlSaveFileEnc(filename, cur, (const char *)encoding);
23131 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
23163 char * encoding; /* the encoding if any assuming the I/O layer handles the trancoding */
23172 encoding = gen_const_char_ptr(n_encoding, 2);
23174 ret_val = xmlSaveFileTo(buf, cur, (const char *)encoding);
23180 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
23260 char * encoding; /* the name of the encoding to use or NULL. */
23272 encoding = gen_const_char_ptr(n_encoding, 2);
23275 ret_val = xmlSaveFormatFileEnc(filename, cur, (const char *)encoding, format);
23280 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
23315 char * encoding; /* the encoding if any assuming the I/O layer handles the trancoding */
23327 encoding = gen_const_char_ptr(n_encoding, 2);
23330 ret_val = xmlSaveFormatFileTo(buf, cur, (const char *)encoding, format);
23336 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
27696 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */
27729 xmlCharEncoding enc; /* the charset encoding if known */
28403 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */
28444 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */
28485 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */
28526 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */
28760 xmlCharEncoding enc; /* the charset encoding if known */
28800 xmlCharEncoding enc; /* the charset encoding if known */
28839 xmlCharEncoding enc; /* the charset encoding if known */
28880 xmlCharEncoding enc; /* the charset encoding if known */
28926 xmlCharEncoding enc; /* the charset encoding if known */
30082 char * encoding; /* the document encoding, or NULL */
30094 encoding = gen_const_char_ptr(n_encoding, 2);
30097 ret_val = xmlReaderForDoc((const xmlChar *)cur, URL, (const char *)encoding, options);
30102 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
30135 char * encoding; /* the document encoding, or NULL */
30145 encoding = gen_const_char_ptr(n_encoding, 1);
30148 ret_val = xmlReaderForFile(filename, (const char *)encoding, options);
30152 des_const_char_ptr(n_encoding, (const char *)encoding, 1);
30187 char * encoding; /* the document encoding, or NULL */
30201 encoding = gen_const_char_ptr(n_encoding, 3);
30204 ret_val = xmlReaderForMemory((const char *)buffer, size, URL, (const char *)encoding, options);
30210 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
30249 char * encoding; /* the document encoding, or NULL */
30263 encoding = gen_const_char_ptr(n_encoding, 3);
30266 ret_val = xmlReaderNewDoc(reader, (const xmlChar *)cur, URL, (const char *)encoding, options);
30272 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
30309 char * encoding; /* the document encoding, or NULL */
30321 encoding = gen_const_char_ptr(n_encoding, 2);
30324 ret_val = xmlReaderNewFile(reader, filename, (const char *)encoding, options);
30329 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
30368 char * encoding; /* the document encoding, or NULL */
30384 encoding = gen_const_char_ptr(n_encoding, 4);
30387 ret_val = xmlReaderNewMemory(reader, (const char *)buffer, size, URL, (const char *)encoding, options);
30394 des_const_char_ptr(n_encoding, (const char *)encoding, 4);
32823 char * encoding; /* the document encoding, or NULL */
32837 encoding = gen_const_char_ptr(n_encoding, 3);
32840 ret_val = xmlTextReaderSetup(reader, input, URL, (const char *)encoding, options);
32845 des_const_char_ptr(n_encoding, (const char *)encoding, 3);
34904 xmlCharEncoding enc; /* an optional encoding information */
44263 char * encoding; /* the encoding or NULL for default */
44275 encoding = gen_const_char_ptr(n_encoding, 2);
44278 ret_val = xmlTextWriterStartDocument(writer, (const char *)version, (const char *)encoding, (const char *)standalone);
44283 des_const_char_ptr(n_encoding, (const char *)encoding, 2);
52140 if (!strcmp(module, "encoding")) return(test_encoding());