Searched refs:optlist (Results 1 - 25 of 37) sorted by relevance

12

/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_icc.c31 const char *optlist)
39 (void *) p, profilename, reserved, optlist))
30 PDF_load_iccprofile(PDF *p, const char *profilename, int reserved, const char *optlist) argument
H A Dp_block.c28 int page, const char *blockname, const char *text, int len, const char *optlist)
36 pdc_strprint(p->pdc, text, len), len, optlist))
48 int page, const char *blockname, int image, const char *optlist)
55 (void *) p, page, blockname, image, optlist))
67 int page, const char *blockname, int contents, const char *optlist)
74 (void *) p, page, blockname, contents, optlist))
27 PDF_fill_textblock(PDF *p, int page, const char *blockname, const char *text, int len, const char *optlist) argument
47 PDF_fill_imageblock(PDF *p, int page, const char *blockname, int image, const char *optlist) argument
66 PDF_fill_pdfblock(PDF *p, int page, const char *blockname, int contents, const char *optlist) argument
H A Dp_pdi.c28 const char *optlist,
37 (void *) p, filename, optlist, reserved))
54 const char *optlist)
62 (void *)p, opaque, filesize, readproc, seekproc, optlist))
88 PDF_open_pdi_page( PDF *p, int doc, int page, const char *optlist) argument
95 "(p[%p], %d, %d, \"%s\")", (void *) p, doc, page, optlist))
106 PDF_fit_pdi_page(PDF *p, int page, float x, float y, const char *optlist) argument
112 "(p[%p], %d, %g, %g, \"%s\")\n", (void *) p, page, x, y, optlist))
186 PDF_process_pdi(PDF *p, int doc, int page, const char *optlist) argument
192 "(p[%p], %d, %d, %s)\n", (void *) p, doc, page, optlist))
25 PDF_open_pdi( PDF *p, const char *filename, const char *optlist, int reserved) argument
48 PDF_open_pdi_callback( PDF *p, void *opaque, size_t filesize, size_t (*readproc)(void *opaque, void *buffer, size_t size), int (*seekproc)(void *opaque, long offset), const char *optlist) argument
[all...]
H A Dpdflib.h112 int page, const char *optlist);
128 const char *filename, int page, const char *optlist);
288 int image, const char *optlist);
293 int contents, const char *optlist);
298 const char *text, int len, const char *optlist);
455 const char *encoding, const char *optlist);
499 /* Set a more complicated dash pattern defined by an optlist. */
501 PDF_setdashpattern(PDF *p, const char *optlist);
557 PDF_add_nameddest(PDF *p, const char *name, int reserved, const char *optlist);
576 const char *optlist);
[all...]
H A Dp_image.c667 pdf__fit_image(PDF *p, int im, float x, float y, const char *optlist) argument
687 pdf_place_xobject(p, im, x, y, optlist);
691 PDF_fit_image(PDF *p, int image, float x, float y, const char *optlist) argument
697 "(p[%p], %d, %g, %g, \"%s\")\n", (void *) p, image, x, y, optlist))
700 pdf__fit_image(p, image, x, y, optlist);
713 char optlist[32]; local
714 sprintf(optlist, "dpi none scale %g", scale);
716 pdf__fit_image(p, image, x, y, optlist);
748 pdf_place_xobject(PDF *p, int im, float x, float y, const char *optlist) argument
785 /* parsing optlist */
1099 char optlist[512]; local
1196 char optlist[256]; local
1246 char optlist[256]; local
1257 PDF_load_image( PDF *p, const char *type, const char *filename, int reserved, const char *optlist) argument
1351 pdf__load_image( PDF *p, const char *type, const char *filename, const char *optlist) argument
[all...]
H A Dp_shading.c108 PDF_shading_pattern(PDF *p, int shading, const char *optlist) argument
118 "(p[%p], %d, \"%s\")", (void *) p, shading, optlist)) {
128 if (optlist && strlen(optlist)) {
133 optlist, pdf_shading_pattern_options, &data, pdc_true);
233 const char *optlist)
248 (void *) p, type, optlist))
296 if (optlist && strlen(optlist)) {
298 optlist, pdf_shading_option
227 PDF_shading( PDF *p, const char *type, float x_0, float y_0, float x_1, float y_1, float c_1, float c_2, float c_3, float c_4, const char *optlist) argument
[all...]
H A Dp_image.h243 const char *optlist);
244 void pdf__fit_image(PDF *p, int im, float x, float y, const char *optlist);
246 const char *optlist);
H A Dp_font.h76 const char *encoding, const char *optlist);
99 const char *optlist);
H A Dp_xgstate.c351 PDF_create_gstate(PDF *p, const char *optlist) argument
363 "(p[%p], \"%s\")", (void *) p, optlist))
368 if (optlist == NULL || !*optlist)
369 pdc_error(p->pdc, PDC_E_ILLARG_EMPTY, "optlist", 0, 0, 0);
379 /* parsing optlist */
383 results = pdc_parse_optionlist(p->pdc, optlist, pdf_create_gstate_options,
/haiku-fatelf/src/libs/pdflib/progs/pdflib/
H A Dpdfimage.c85 char optlist[128]; local
153 sprintf(optlist, "dpi %d", resolution);
155 sprintf(optlist, "adjustpage");
157 PDF_fit_image(p, image, 0.0, 0.0, optlist);
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/
H A Dpdflib.java81 float llx, float lly, float urx, float ury, int page, String optlist)
84 PDF_add_locallink(p, llx, lly, urx, ury, page, optlist);
106 String filename, int page, String optlist)
109 PDF_add_pdflink(p, llx, lly, urx, ury, filename, page, optlist);
278 int page, String blockname, int image, String optlist)
281 return PDF_fill_imageblock(p, page, blockname, image, optlist);
289 int page, String blockname, int contents, String optlist)
292 return PDF_fill_pdfblock(p, page, blockname, contents, optlist);
300 int page, String blockname, String text, String optlist)
303 return PDF_fill_textblock(p, page, blockname, text, optlist);
80 add_locallink( float llx, float lly, float urx, float ury, int page, String optlist) argument
104 add_pdflink( float llx, float lly, float urx, float ury, String filename, int page, String optlist) argument
277 fill_imageblock( int page, String blockname, int image, String optlist) argument
288 fill_pdfblock( int page, String blockname, int contents, String optlist) argument
299 fill_textblock( int page, String blockname, String text, String optlist) argument
584 load_font(String fontname, String encoding, String optlist) argument
679 setdashpattern(String optlist) argument
799 add_nameddest(String name, String optlist) argument
822 load_iccprofile(String profilename, String optlist) argument
854 fit_image(int image, float x, float y, String optlist) argument
864 load_image( String imagetype, String filename, String optlist) argument
1016 fit_pdi_page(int page, float x, float y, String optlist) argument
1048 open_pdi(String filename, String optlist, int reserved) argument
1059 open_pdi_page(int doc, int pagenumber, String optlist) argument
1069 process_pdi(int doc, int page, String optlist) argument
1093 create_pvf(String filename, byte[] data, String optlist) argument
1116 shading( String shtype, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, String optlist) argument
1128 shading_pattern(int shading, String optlist) argument
1183 fit_textline( String text, float x, float y, String optlist) argument
1253 begin_font( String name, float a, float b, float c, float d, float e, float f, String optlist) argument
1298 create_gstate(String optlist) argument
1576 PDF_begin_font(long jp, String jname, float ja, float jb, float jc, float jd, float je, float jf, String optlist) argument
[all...]
H A Dpdflib_java.c316 char * PDF_VOLATILE optlist = NULL; local
327 optlist = (char *)GetStringPDFChars(p, jenv, joptlist);
329 PDF_add_locallink(p, llx, lly, urx, ury, page, optlist);
332 ReleaseStringPDFChars(jenv, joptlist, optlist);
389 char * PDF_VOLATILE optlist = NULL; local
401 optlist = (char *)GetStringPDFChars(p, jenv, joptlist);
403 PDF_add_pdflink(p, llx, lly, urx, ury, filename, page, optlist);
407 ReleaseStringPDFChars(jenv, joptlist, optlist);
864 char * PDF_VOLATILE optlist = NULL; local
873 optlist
894 char * PDF_VOLATILE optlist = NULL; local
927 char * PDF_VOLATILE optlist = NULL; local
1377 char * PDF_VOLATILE optlist = NULL; local
1550 char * PDF_VOLATILE optlist = NULL; local
1803 char * PDF_VOLATILE optlist = NULL; local
1856 char * PDF_VOLATILE optlist = NULL; local
1925 char * PDF_VOLATILE optlist = NULL; local
1952 char * PDF_VOLATILE optlist = NULL; local
2343 char * PDF_VOLATILE optlist = NULL; local
2438 char * PDF_VOLATILE optlist = NULL; local
2471 char * PDF_VOLATILE optlist = NULL; local
2528 char * PDF_VOLATILE optlist = NULL; local
2559 char * PDF_VOLATILE optlist = NULL; local
2621 char * PDF_VOLATILE optlist = NULL; local
2661 char * PDF_VOLATILE optlist = NULL; local
2778 char * PDF_VOLATILE optlist = NULL; local
2958 char * PDF_VOLATILE optlist = NULL; local
3053 char * PDF_VOLATILE optlist = NULL; local
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/c/
H A Dquickreference.c18 char optlist[128]; local
77 sprintf(optlist, "scale %f", (float) 1/maxrow);
79 width/maxcol*col, (row + 1) * height/maxrow, optlist);
/haiku-fatelf/src/libs/pdflib/bind/pdflib/cpp/
H A Dquickreference.cpp18 char optlist[128]; local
70 sprintf(optlist, "scale %f", (float) 1/maxrow);
72 (row + 1) * height/maxrow, optlist);
H A Dpdflib.cpp161 string optlist) PDF_THROWS(PDFlib::Exception)
163 PDFCPP_TRY m_PDFlib_api->PDF_add_locallink(p, llx, lly, urx, ury, page, CHAR(optlist));
178 string filename, int page, string optlist) PDF_THROWS(PDFlib::Exception)
183 page, CHAR(optlist));
394 PDFlib::fill_imageblock(int page, string blockname, int image, string optlist)
400 image, CHAR(optlist));
407 PDFlib::fill_pdfblock(int page, string blockname, int contents, string optlist)
413 contents, CHAR(optlist));
420 PDFlib::fill_textblock(int page, string blockname, string text, string optlist)
426 CHAR(text), (int) LEN(text), CHAR(optlist));
[all...]
H A Dpdflib.hpp94 int page, string optlist) PDF_THROWS(PDFlib::Exception);
100 string optlist) PDF_THROWS(PDFlib::Exception);
132 int fill_imageblock(int page, string blockname, int image, string optlist)
134 int fill_pdfblock(int page, string blockname, int contents, string optlist)
136 int fill_textblock(int page, string blockname, string text, string optlist)
182 int load_font(string fontname, string encoding, string optlist)
195 void setdashpattern(string optlist) PDF_THROWS(PDFlib::Exception);
210 void add_nameddest (string name, string optlist) PDF_THROWS(PDFlib::Exception);
214 int load_iccprofile(string profilename, string optlist)
220 void fit_image (int image, float x, float y, string optlist)
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/python/
H A Dquickreference.py60 optlist = "scale " + repr(1.0/maxrow) variable
63 width/maxcol*col, (row + 1) * height/maxrow, optlist)
H A Dpdflib_py.c2555 char *optlist; local
2557 if(!PyArg_ParseTuple(args,"ssffffffs:PDF_begin_font",&_argc0,&name,&a,&b,&c,&d,&e,&f,&optlist))
2566 try { PDF_begin_font(p, name, 0, a, b, c, d, e, f, optlist);
2685 char *optlist; local
2687 if(!PyArg_ParseTuple(args,"sisis:PDF_fill_imageblock",&py_p,&page,&blockname,&image,&optlist))
2697 _result = PDF_fill_imageblock(p, page, blockname, image, optlist);
2709 char *optlist; local
2711 if(!PyArg_ParseTuple(args,"sisis:PDF_fill_pdfblock",&py_p,&page,&blockname,&contents,&optlist))
2721 _result = PDF_fill_pdfblock(p, page, blockname, contents, optlist);
2734 char *optlist; local
2758 char *optlist; local
2778 char *optlist; local
2800 char *optlist; local
2823 char *optlist; local
2846 char *optlist; local
2870 char *optlist; local
2893 char *optlist; local
2917 char *optlist; local
2939 char *optlist; local
2992 char *optlist; local
3013 char *optlist; local
3058 char *optlist; local
3081 char *optlist; local
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/php/ext/pdf/
H A Dpdf.c438 /* TODO [optlist] */
439 /* {{{ proto void pdf_add_locallink(int pdfdoc, float llx, float lly, float urx, float ury, int page, string optlist)
443 zval **p, **llx, **lly, **urx, **ury, **page, **optlist; local
446 if (ZEND_NUM_ARGS() != 7 || zend_get_parameters_ex(7, &p, &llx, &lly, &urx, &ury, &page, &optlist) == FAILURE) {
457 convert_to_string_ex(optlist);
465 Z_STRVAL_PP(optlist));
509 /* TODO [optlist] */
510 /* {{{ proto void pdf_add_pdflink(int pdfdoc, float llx, float lly, float urx, float ury, string filename, int page, string optlist)
514 zval **p, **llx, **lly, **urx, **ury, **filename, **page, **optlist; local
518 if (ZEND_NUM_ARGS() != 8 || zend_get_parameters_ex(8, &p, &llx, &lly, &urx, &ury, &filename, &page, &optlist)
937 zval **p, **page, **blockname, **image, **optlist; local
967 zval **p, **page, **blockname, **contents, **optlist; local
997 zval **p, **page, **blockname, **text, **optlist; local
1628 zval **p, **fontname, **encoding, **optlist; local
1833 zval **p, **optlist; local
2133 zval **p, **name, **optlist; local
2187 zval **p, **profilename, **optlist; local
2269 zval **p, **image, **x, **y, **optlist; local
2298 zval **p, **imagetype, **filename, **optlist; local
2723 zval **p, **page, **x, **y, **optlist; local
2853 zval **p, **doc, **pagenumber, **optlist; local
2910 zval **p, **doc, **page, **optlist; local
2940 zval **p, **filename, **data, **optlist; local
2997 zval **p, **type, **x0, **y0, **x1, **y1, **c1, **c2, **c3, **c4, **optlist; local
3039 zval **p, **shading, **optlist; local
3159 zval **p, **text, **x, **y, **optlist; local
3345 zval **p, **fontname, **a, **b, **c, **d, **e, **f, **optlist; local
3456 zval **p, **optlist; local
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/php/
H A Dquickreference.php55 $optlist = sprintf("scale %f", 1/$maxrow); variable
58 $width/$maxcol*$col, ($row + 1) * $height/$maxrow, $optlist);
/haiku-fatelf/src/libs/pdflib/bind/pdflib/perl/
H A Dpdflib_pl.c450 croak("Usage: PDF_add_locallink(p, llx, lly, urx, ury, page, optlist);");
519 croak("Usage: PDF_add_pdflink(p, llx, lly, urx, ury, filename, page, optlist);");
924 char * PDF_VOLATILE optlist; local
929 croak("Usage: PDF_fill_imageblock(p, page, blockname, image, optlist);");
938 optlist = (char *) SvPV(ST(4),PL_na);
940 try { _result = (int )PDF_fill_imageblock(p,page, blockname, image, optlist);
957 char * PDF_VOLATILE optlist; local
962 croak("Usage: PDF_fill_pdfblock(p, page, blockname, contents, optlist);");
971 optlist = (char *) SvPV(ST(4),PL_na);
973 try { _result = (int )PDF_fill_pdfblock(p,page, blockname, contents, optlist);
991 char * PDF_VOLATILE optlist; local
1636 char * PDF_VOLATILE optlist; local
1847 char * PDF_VOLATILE optlist; local
2130 char * PDF_VOLATILE optlist; local
2180 char * PDF_VOLATILE optlist; local
2255 char * PDF_VOLATILE optlist; local
2282 char * PDF_VOLATILE optlist; local
2661 char * PDF_VOLATILE optlist; local
2846 char * PDF_VOLATILE optlist; local
2880 char * PDF_VOLATILE optlist; local
2943 char * PDF_VOLATILE optlist; local
2980 char * PDF_VOLATILE optlist; local
3114 char * PDF_VOLATILE optlist; local
3282 char * PDF_VOLATILE optlist; local
3391 char * PDF_VOLATILE optlist; local
[all...]
/haiku-fatelf/src/bin/network/traceroute/
H A Dtraceroute.c541 register u_char *optlist; local
543 optlist = outp;
552 optlist[0] = IPOPT_NOP;
554 optlist[1] = IPOPT_LSRR;
556 optlist[2] = i + 3;
558 optlist[3] = IPOPT_MINOFF;
559 memcpy(optlist + 4, gwlist + 1, i);
622 u_char optlist[MAX_IPOPTLEN]; local
635 optlist[0] = IPOPT_NOP;
637 optlist[
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/tcl/
H A Dpdflib_tcl.c449 Tcl_SetResult(interp, "Wrong # args. PDF_add_locallink p llx lly urx ury page optlist ",TCL_STATIC);
566 Tcl_SetResult(interp, "Wrong # args. PDF_add_pdflink p llx lly urx ury filename page optlist ",TCL_STATIC);
1066 char *optlist; local
1070 Tcl_SetResult(interp, "Wrong # args. PDF_fill_imageblock p page blockname image optlist ",TCL_STATIC);
1102 if ((optlist = Tcl_GetStringFromObj(objv[5], &len)) == NULL) {
1104 "Couldn't retrieve optlist argument in PDF_fill_imageblock", TCL_STATIC);
1110 _result = (int)PDF_fill_imageblock(p, page, blockname, image, optlist);
1126 char * optlist; local
1130 Tcl_SetResult(interp, "Wrong # args. PDF_fill_pdfblock p page blockname contents optlist ",TCL_STATIC);
1162 if ((optlist
1187 char * optlist; local
1910 char *optlist; local
2165 char *optlist; local
2503 char *optlist; local
2587 char *optlist; local
2683 char *optlist; local
2718 char *optlist; local
3216 char *optlist; local
3394 char *optlist; local
3424 char *optlist; local
3510 char *optlist; local
3545 char *optlist; local
3683 char *optlist; local
3978 char *optlist; local
4083 char *optlist; local
[all...]
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_optparse.h25 * An optlist is a string containing pairs of the form
96 * An optlist will be parsed by the function pdc_parse_optionlist.
214 pdc_resopt *pdc_parse_optionlist(pdc_core *pdc, const char *optlist,
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dns32k-dis.c45 static void optlist PARAMS ((int, const struct ns32k_option *, char *));
239 optlist(options, optionP, result)
786 optlist(Ivalue, opt_u, result);
791 optlist(Ivalue, opt_U, result);
796 optlist(Ivalue, opt_O, result);
801 optlist(Ivalue, opt_C, result);
806 optlist(Ivalue, opt_S, result);
237 optlist(options, optionP, result) function

Completed in 219 milliseconds

12