/third_party/cups-filters/filter/ |
D | pdfutils.c | 19 void pdfOut_printf(pdfOut *pdf,const char *fmt,...) // {{{ in pdfOut_printf() argument 21 assert(pdf); in pdfOut_printf() 28 pdf->filepos+=len; in pdfOut_printf() 32 void pdfOut_putString(pdfOut *pdf,const char *str,int len) // {{{ - >len==-1: strlen() in pdfOut_putString() argument 34 assert(pdf); in pdfOut_putString() 46 pdf->filepos+=iA+4; in pdfOut_putString() 52 pdf->filepos+=iA+2; in pdfOut_putString() 57 pdf->filepos+=iA+2; in pdfOut_putString() 63 void pdfOut_putHexString(pdfOut *pdf,const char *str,int len) // {{{ - >len==-1: strlen() in pdfOut_putHexString() argument 65 assert(pdf); in pdfOut_putHexString() [all …]
|
D | test_pdf2.c | 9 static inline void write_string(pdfOut *pdf,EMB_PARAMS *emb,const char *str) // {{{ in write_string() argument 11 assert(pdf); in write_string() 22 pdf->filepos+=4*iA+2; in write_string() 28 pdfOut_putString(pdf,str,-1); in write_string() 35 pdfOut *pdf; in main() local 37 pdf=pdfOut_new(); in main() 38 assert(pdf); in main() 40 pdfOut_begin_pdf(pdf); in main() 65 const int cobj=pdfOut_add_xref(pdf); in main() 66 pdfOut_printf(pdf,"%d 0 obj\n" in main() [all …]
|
D | test_pdf1.c | 7 pdfOut *pdf; in main() local 9 pdf=pdfOut_new(); in main() 10 assert(pdf); in main() 12 pdfOut_begin_pdf(pdf); in main() 15 int font_obj=pdfOut_add_xref(pdf); in main() 16 pdfOut_printf(pdf,"%d 0 obj\n" in main() 25 int cobj=pdfOut_add_xref(pdf); in main() 27 pdfOut_printf(pdf,"%d 0 obj\n" in main() 36 int obj=pdfOut_add_xref(pdf); in main() 37 pdfOut_printf(pdf,"%d 0 obj\n" in main() [all …]
|
D | pdf.cxx | 63 QPDF *pdf = new QPDF(); in pdf_load_template() local 64 pdf->processFile(filename); in pdf_load_template() 65 unsigned pages = (pdf->getAllPages()).size(); in pdf_load_template() 70 delete pdf; in pdf_load_template() 74 return pdf; in pdf_load_template() 82 extern "C" void pdf_free(pdf_t *pdf) in pdf_free() argument 84 delete pdf; in pdf_free() 95 QPDF *pdf = new QPDF(); in pdf_pages() local 96 if (pdf) { in pdf_pages() 98 pdf->processFile(filename); in pdf_pages() [all …]
|
D | texttopdf.c | 135 pdfOut *pdf; variable 183 emb->font->fobj=pdfOut_write_font(pdf,emb); in WriteEpilogue() 194 pdf->xref[FontResource-1]=pdf->filepos; in WriteEpilogue() 195 pdfOut_printf(pdf,"%d 0 obj\n" in WriteEpilogue() 203 pdfOut_printf(pdf," /%s%02x %d 0 R\n",names[i],j,emb->font->fobj); in WriteEpilogue() 208 pdfOut_printf(pdf,">>\n" in WriteEpilogue() 211 pdfOut_finish_pdf(pdf); in WriteEpilogue() 213 pdfOut_free(pdf); in WriteEpilogue() 225 int content=pdfOut_add_xref(pdf); in WritePage() 226 pdfOut_printf(pdf,"%d 0 obj\n" in WritePage() [all …]
|
D | pdfutils.h | 33 void pdfOut_free(pdfOut *pdf); 38 int pdfOut_begin_pdf(pdfOut *pdf); 39 void pdfOut_finish_pdf(pdfOut *pdf); 44 void pdfOut_printf(pdfOut *pdf,const char *fmt,...) 50 void pdfOut_putString(pdfOut *pdf,const char *str,int len); 51 void pdfOut_putHexString(pdfOut *pdf,const char *str,int len); 63 int pdfOut_add_xref(pdfOut *pdf); 68 int pdfOut_add_page(pdfOut *pdf,int obj); 73 int pdfOut_add_kv(pdfOut *pdf,const char *key,const char *val); 80 int pdfOut_write_font(pdfOut *pdf,struct _EMB_PARAMS *emb);
|
D | rastertopdf.cpp | 297 QPDF pdf; member 324 info->pdf.emptyPDF(); in create_pdf_file() 428 QPDFObjectHandle embedIccProfile(QPDF &pdf) in embedIccProfile() argument 485 iccstream = QPDFObjectHandle::newStream(&pdf, ph); in embedIccProfile() 492 ret = pdf.makeIndirectObject(array); in embedIccProfile() 500 QPDFObjectHandle embedSrgbProfile(QPDF &pdf) in embedSrgbProfile() argument 507 iccbased_reference = embedIccProfile(pdf); in embedSrgbProfile() 615 makePclmStrips(QPDF &pdf, unsigned num_strips, in makePclmStrips() argument 622 ret[i] = QPDFObjectHandle::newStream(&pdf); in makePclmStrips() 706 QPDFObjectHandle makeImage(QPDF &pdf, PointerHolder<Buffer> page_data, unsigned width, in makeImage() argument [all …]
|
D | test.sh | 10 ./texttopdf 1 hi_user there_title 1 "" Makefile > test1.pdf 11 ./texttopdf 1 hi_user there_title 1 "PrettyPrint=1" Makefile > test2.pdf 12 …application/x-csource; ./texttopdf 1 hi_user there_title 1 "PrettyPrint=1" test_pdf1.c > test3.pdf) 13 (export CHARSET=utf-8; ./texttopdf 1 hi_user there_title 1 "PrettyPrint=1" Makefile > test4.pdf) 14 (export CHARSET=utf-8; ./texttopdf 1 hi_user there_title 1 "" testin > test5.pdf)
|
D | urftopdf.cpp | 75 QPDF pdf; member 90 info->pdf.emptyPDF(); in create_pdf_file() 122 QPDFObjectHandle makeImage(QPDF &pdf, PointerHolder<Buffer> page_data, unsigned width, unsigned hei… in makeImage() argument 124 QPDFObjectHandle ret = QPDFObjectHandle::newStream(&pdf); in makeImage() 171 …QPDFObjectHandle image = makeImage(info->pdf, info->page_data, info->width, info->height, DEVICE_R… in finish_page() 213 …page.replaceKey("/Contents",QPDFObjectHandle::newStream(&info->pdf)); // data will be provided lat… in add_pdf_page() 220 info->page = info->pdf.makeIndirectObject(page); // we want to keep a reference in add_pdf_page() 221 info->pdf.addPage(info->page, false); in add_pdf_page() 236 QPDFWriter output(info->pdf,NULL); in close_pdf_file() 418 struct pdf_info pdf; in main() local [all …]
|
/third_party/flutter/skia/gn/ |
D | pdf.gni | 12 "$_src/pdf/SkBitmapKey.h", 13 "$_src/pdf/SkClusterator.cpp", 14 "$_src/pdf/SkClusterator.h", 15 "$_src/pdf/SkDeflate.cpp", 16 "$_src/pdf/SkDeflate.h", 17 "$_src/pdf/SkJpegInfo.cpp", 18 "$_src/pdf/SkJpegInfo.h", 19 "$_src/pdf/SkKeyedImage.cpp", 20 "$_src/pdf/SkKeyedImage.h", 21 "$_src/pdf/SkPDFBitmap.cpp", [all …]
|
/third_party/skia/gn/ |
D | pdf.gni | 14 "$_src/pdf/SkBitmapKey.h", 15 "$_src/pdf/SkClusterator.cpp", 16 "$_src/pdf/SkClusterator.h", 17 "$_src/pdf/SkDeflate.cpp", 18 "$_src/pdf/SkDeflate.h", 19 "$_src/pdf/SkJpegInfo.cpp", 20 "$_src/pdf/SkJpegInfo.h", 21 "$_src/pdf/SkKeyedImage.cpp", 22 "$_src/pdf/SkKeyedImage.h", 23 "$_src/pdf/SkPDFBitmap.cpp", [all …]
|
/third_party/cups-filters/mime/ |
D | cupsfilters.convs.in | 47 application/pdf application/vnd.cups-pdf 66 pdftopdf 48 application/x-cshell application/pdf 32 texttopdf 49 application/x-csource application/pdf 32 texttopdf 50 application/x-perl application/pdf 32 texttopdf 51 application/x-shell application/pdf 32 texttopdf 52 text/plain application/pdf 32 texttopdf 53 text/html application/pdf 32 texttopdf 54 image/pwg-raster application/pdf 32 rastertopdf 55 image/gif application/vnd.cups-pdf 65 imagetopdf 56 image/png application/vnd.cups-pdf 65 imagetopdf [all …]
|
D | braille.convs | 64 application/pdf application/vnd.cups-brf 100 texttobrf 98 image/svg image/vnd.cups-pdf 30 svgtopdf 99 image/svg+xml image/vnd.cups-pdf 30 svgtopdf 100 application/x-xfig image/vnd.cups-pdf 30 xfigtopdf 101 image/wmf image/vnd.cups-pdf 30 wmftopdf 102 image/x-wmf image/vnd.cups-pdf 30 wmftopdf 103 windows/metafile image/vnd.cups-pdf 30 wmftopdf 104 application/x-msmetafile image/vnd.cups-pdf 30 wmftopdf 105 image/emf image/vnd.cups-pdf 30 emftopdf 106 image/x-emf image/vnd.cups-pdf 30 emftopdf [all …]
|
/third_party/cups-filters/filter/pdftopdf/ |
D | qpdf_pdftopdf_processor.cc | 37 QPDF_PDFTOPDF_PageHandle::QPDF_PDFTOPDF_PageHandle(QPDF *pdf,float width,float height) // {{{ in QPDF_PDFTOPDF_PageHandle() argument 41 assert(pdf); in QPDF_PDFTOPDF_PageHandle() 52 page.replaceKey("/Contents",QPDFObjectHandle::newStream(pdf)); in QPDF_PDFTOPDF_PageHandle() 56 page=pdf->makeIndirectObject(page); // stores *pdf in QPDF_PDFTOPDF_PageHandle() 457 pdf.reset(); in closeFile() 483 pdf.reset(new QPDF); in loadFile() 493 pdf->processFile("temp file",f,false); in loadFile() 501 pdf->processFile("temp file",f,true); in loadFile() 520 pdf.reset(new QPDF); in loadFilename() 521 pdf->processFile(name); in loadFilename() [all …]
|
D | qpdf_cm.cc | 41 bool hasOutputIntent(QPDF &pdf) // {{{ in hasOutputIntent() argument 43 auto catalog=pdf.getRoot(); in hasOutputIntent() 53 void addOutputIntent(QPDF &pdf,const char *filename) // {{{ in addOutputIntent() argument 59 QPDFObjectHandle outicc=QPDFObjectHandle::newStream(&pdf,icc); in addOutputIntent() 78 auto catalog=pdf.getRoot(); in addOutputIntent() 106 void addDefaultRGB(QPDF &pdf,QPDFObjectHandle srcicc) // {{{ in addDefaultRGB() argument 110 auto pages=pdf.getAllPages(); in addDefaultRGB() 133 QPDFObjectHandle setDefaultICC(QPDF &pdf,const char *filename) // {{{ in setDefaultICC() argument 141 QPDFObjectHandle ret=QPDFObjectHandle::newStream(&pdf,icc); in setDefaultICC()
|
D | qpdf_cm.h | 6 bool hasOutputIntent(QPDF &pdf); 7 void addOutputIntent(QPDF &pdf,const char *filename); 9 void addDefaultRGB(QPDF &pdf,QPDFObjectHandle srcicc); 10 QPDFObjectHandle setDefaultICC(QPDF &pdf,const char *filename);
|
/third_party/flutter/skia/third_party/externals/freetype/docs/ |
D | formats.txt | 77 --- BDF --- --- bdf 5005.BDF_Spec.pdf, X11 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) 84 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 87 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 100 --- PS TYPE_1 --- type1 T1_SPEC.pdf 102 PFB PS TYPE_1 --- type1 T1_SPEC.pdf, 103 5040.Download_Fonts.pdf 105 --- PS TYPE_1 CID cid PLRM.pdf (CID Font Type 0; 107 --- PS MM --- type1 5015.Type1_Supp.pdf [all …]
|
/third_party/freetype/docs/ |
D | formats.txt | 77 --- BDF --- --- bdf 5005.BDF_Spec.pdf, X11 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) [3] 83 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 85 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 105 --- PS TYPE_1 --- type1 T1_SPEC.pdf 107 PFB PS TYPE_1 --- type1 T1_SPEC.pdf, 108 5040.Download_Fonts.pdf 110 --- PS TYPE_1 CID cid PLRM.pdf (CID Font Type 0; 112 --- PS MM --- type1 5015.Type1_Supp.pdf [all …]
|
/third_party/skia/third_party/externals/freetype/docs/ |
D | formats.txt | 77 --- BDF --- --- bdf 5005.BDF_Spec.pdf, X11 82 SFNT PS TYPE_1 CID cid 5180.sfnt.pdf (for the Mac) [3] 83 SFNT PS CFF --- cff OT spec, 5176.CFF.pdf 85 SFNT PS CFF CID cff OT spec, 5176.CFF.pdf 86 SFNT PS CFF SYNTHETIC --- OT spec, 5176.CFF.pdf 105 --- PS TYPE_1 --- type1 T1_SPEC.pdf 107 PFB PS TYPE_1 --- type1 T1_SPEC.pdf, 108 5040.Download_Fonts.pdf 110 --- PS TYPE_1 CID cid PLRM.pdf (CID Font Type 0; 112 --- PS MM --- type1 5015.Type1_Supp.pdf [all …]
|
/third_party/mbedtls/docs/architecture/ |
D | Makefile | 13 pdf: $(all_markdown:.md=.pdf) target 14 all: html pdf 17 .SUFFIXES: .md .html .pdf 21 .md.pdf: 25 rm -f *.html *.pdf 26 rm -f testing/*.html testing/*.pdf
|
/third_party/mbedtls/docs/proposed/ |
D | Makefile | 13 pdf: $(all_markdown:.md=.pdf) target 14 all: html pdf 17 .SUFFIXES: .md .html .pdf 21 .md.pdf: 25 rm -f *.html *.pdf
|
/third_party/skia/third_party/externals/egl-registry/ |
D | .htaccess | 8 RewriteRule ^specs/eglspec.1.1.02.pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.1.pdf [L… 9 RewriteRule ^specs/eglspec.1.4.([0-9]+).pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.4.… 10 …specs/eglspec.1.4.withchanges.([0-9]+).pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.4.…
|
/third_party/EGL/ |
D | .htaccess | 8 RewriteRule ^specs/eglspec.1.1.02.pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.1.pdf [L… 9 RewriteRule ^specs/eglspec.1.4.([0-9]+).pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.4.… 10 …specs/eglspec.1.4.withchanges.([0-9]+).pdf https://www.khronos.org/registry/EGL/specs/eglspec.1.4.…
|
/third_party/python/Doc/ |
D | Makefile | 183 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2) 184 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip 185 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2 191 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2) 192 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip 193 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
|
/third_party/ltp/docparse/ |
D | Makefile | 14 METADATA_GENERATOR_PARAMS_PDF := -b pdf -r asciidoctor-pdf 19 METADATA_GENERATOR_PARAMS_PDF := -f pdf 41 MAKE_TARGETS += metadata.pdf 65 metadata.pdf: txt
|