Searched refs:encodings (Results 1 - 19 of 19) sorted by relevance

/haiku-fatelf/src/libs/pdflib/bind/pdflib/php/
H A Dchartab.php13 /* list of encodings to use */
14 $encodings = array( "iso8859-1", "iso8859-2", "iso8859-15" ); variable
45 /* loop over all encodings */
46 for ($page = 0; $page < count($encodings); $page++)
54 $fontname, $encodings[$page], $embed ? "" : "not ");
72 $font = PDF_load_font($p, $fontname, $encodings[$page],
/haiku-fatelf/src/libs/pdflib/bind/pdflib/c/
H A Dchartab.c20 /* list of encodings to use */
21 const char *encodings[] = { "iso8859-1", "iso8859-2", "iso8859-15" }; local
26 #define ENCODINGS ((int) ((sizeof(encodings)/sizeof(encodings[0]))))
66 /* loop over all encodings */
76 fontname, encodings[page], embed ? "" : "not ");
94 font = PDF_load_font(p, fontname, 0, encodings[page],
/haiku-fatelf/src/libs/pdflib/bind/pdflib/perl/
H A Dchartab.pl15 # list of encodings to use
16 @encodings = ( "iso8859-1", "iso8859-2", "iso8859-15" );
48 # loop over all encodings
49 for ($page = 0; $page <= $#encodings; $page++)
57 $fontname, $encodings[$page], $embed ? "" : "not ");
75 $font = PDF_load_font($p, $fontname, $encodings[$page],
/haiku-fatelf/src/libs/pdflib/bind/pdflib/cpp/
H A Dchartab.cpp19 /* list of encodings to use */
20 const char *encodings[] = { "iso8859-1", "iso8859-2", "iso8859-15" }; local
59 /* loop over all encodings */
69 fontname, encodings[page], embed ? "" : "not ");
87 font = p.load_font(fontname, encodings[page],
/haiku-fatelf/src/libs/expat/lib/
H A Dxmltok_ns.c22 static const ENCODING *NS(encodings)[] = {
36 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
44 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
80 return NS(encodings)[i];
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/
H A Dchartab.java18 /* list of encodings to use */
19 static final String encodings[] = { "iso8859-1", "iso8859-2", "iso8859-15" }; field in class:chartab
56 /* loop over all encodings */
65 buf = fontname + " (" + encodings[page] + ") embedded";
67 buf = fontname + " (" + encodings[page] + ") not embedded";
91 font = p.load_font(fontname, encodings[page],buf);
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/servlet/
H A DchartabServlet.java20 /* list of encodings to use */
21 static final String encodings[] = { "iso8859-1", "iso8859-2", "iso8859-15" }; field in class:chartabServlet
59 /* loop over all encodings */
68 buf = fontname + " (" + encodings[page] + ") embedded";
70 buf = fontname + " (" + encodings[page] + ") not embedded";
94 font = p.load_font(fontname, encodings[page],buf);
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_encoding.c97 p->encodings[enc].ev = pdc_new_encoding(p->pdc, encoding);
98 p->encodings[enc].ev->flags |= PDC_ENC_USER;
99 p->encodings[enc].ev->flags |= PDC_ENC_SETNAMES;
100 p->encodings[enc].ev->flags |= PDC_ENC_ALLOCCHARS;
103 else if (!(p->encodings[enc].ev->flags & PDC_ENC_USER))
107 else if (p->encodings[enc].ev->flags & PDC_ENC_USED)
113 ev = p->encodings[enc].ev;
220 if (p->encodings[enc].ev->chars[slot])
221 name = p->encodings[enc].ev->chars[slot];
286 code = (int) p->encodings[en
[all...]
H A Dp_font.c729 p->encodings[enc].ev->flags |= PDC_ENC_USED;
992 * is used with different encodings Acrobat 4 will not be
1098 if (p->encodings[enc].id == PDC_BAD_ID)
1099 p->encodings[enc].id = pdc_alloc_id(p->out);
1100 encoding_id = p->encodings[enc].id;
1137 pdc_encodingvector *ev = p->encodings[enc].ev;
1150 evb = p->encodings[pdc_winansi].ev;
1152 p->encodings[pdc_winansi].ev =
1159 evb = p->encodings[pdc_macroman].ev;
1161 p->encodings[pdc_macroma
[all...]
H A Dp_type3.c82 pdc_encodingvector *ev = p->encodings[enc].ev;
157 name2width(newfont->t3font, p->encodings[enc].ev->chars[i]);
161 p->encodings[enc].ev->flags |= PDC_ENC_USED;
H A Dp_hyper.c1238 if (p->encodings)
1247 ev = p->encodings[enc].ev;
1250 ev_pdfdoc = p->encodings[pdc_pdfdoc].ev;
1254 ev_pdfdoc = p->encodings[pdc_pdfdoc].ev;
H A Dp_afm.c429 ev = p->encodings[enc].ev;
H A Dp_intern.h84 #define ENCODINGS_CHUNKSIZE 8 /* document encodings */
440 /* ------------------- encodings ------------------- */
441 pdf_encoding *encodings; /* all encodings in document */ member in struct:PDF_s
H A Dp_truetype.c464 pdc_encodingvector *ev = p->encodings[enc].ev;
1543 if (!p->encodings[pdc_macroman].ev)
1544 p->encodings[pdc_macroman].ev =
/haiku-fatelf/src/apps/serialconnect/libvterm/src/
H A Dencoding.c206 encodings[] = { variable in typeref:struct:__anon3144
217 for(i = 0; encodings[i].designation; i++)
218 if(encodings[i].type == type && encodings[i].designation == designation)
219 return encodings[i].enc;
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPDFText.cpp62 static unicode_to_encoding encodings[] = { variable
112 for (unsigned int i = 0; i < ELEMS(encodings, unicode_to_encoding); i++) {
113 if (encodings[i].from <= unicode && unicode <= encodings[i].to) {
115 int16 top = encodings[i].length-1;
116 uint16* codes = encodings[i].unicodes;
384 // use one of the user pre-defined encodings
/haiku-fatelf/src/apps/poorman/libhttpd/
H A Dlibhttpd.h111 char* encodings; member in struct:__anon3105
H A Dlibhttpd.c138 static void send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type, off_t length, time_t mod );
601 send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type, off_t length, time_t mod ) argument
653 if ( encodings[0] != '\0' )
656 "Content-Encoding: %s\015\012", encodings );
1689 httpd_realloc_str( &hc->encodings, &hc->maxencodings, 0 );
1737 hc->encodings[0] = '\0';
2483 free( (void*) hc->encodings );
2550 /* Figure out MIME encodings and type based on the filename. Multiple
2551 ** encodings are separated by commas, and are listed in the order in
2583 /* Search the encodings tabl
[all...]
/haiku-fatelf/src/bin/coreutils/
H A Dconfigure14426 single wide character. This excludes the GB2312 and GBK encodings. */
[all...]

Completed in 249 milliseconds