Home
last modified time | relevance | path

Searched refs:WindowsPrintMode (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fxge/
Dcfx_windowsrenderdevice.h14 enum WindowsPrintMode { enum
35 extern WindowsPrintMode g_pdfium_print_mode;
/external/pdfium/core/fxge/win32/
Dfx_win32_print.cpp336 WindowsPrintMode mode, in CPSPrinterDriver()
341 ASSERT(mode == WindowsPrintMode::kModePostScript2 || in CPSPrinterDriver()
342 mode == WindowsPrintMode::kModePostScript3 || in CPSPrinterDriver()
343 mode == WindowsPrintMode::kModePostScript2PassThrough || in CPSPrinterDriver()
344 mode == WindowsPrintMode::kModePostScript3PassThrough); in CPSPrinterDriver()
345 int pslevel = (mode == WindowsPrintMode::kModePostScript2 || in CPSPrinterDriver()
346 mode == WindowsPrintMode::kModePostScript2PassThrough) in CPSPrinterDriver()
350 (mode == WindowsPrintMode::kModePostScript2 || in CPSPrinterDriver()
351 mode == WindowsPrintMode::kModePostScript3) in CPSPrinterDriver()
Dfx_win32_device.cpp665 WindowsPrintMode g_pdfium_print_mode = WindowsPrintMode::kModeEmf;
1378 if (g_pdfium_print_mode == WindowsPrintMode::kModeEmf) in CreateDriver()
1381 if (g_pdfium_print_mode == WindowsPrintMode::kModeTextOnly) in CreateDriver()
Dwin32_int.h224 WindowsPrintMode mode,
/external/pdfium/fpdfsdk/
Dfpdf_view.cpp60 static_assert(WindowsPrintMode::kModeEmf == FPDF_PRINTMODE_EMF,
62 static_assert(WindowsPrintMode::kModeTextOnly == FPDF_PRINTMODE_TEXTONLY,
64 static_assert(WindowsPrintMode::kModePostScript2 == FPDF_PRINTMODE_POSTSCRIPT2,
66 static_assert(WindowsPrintMode::kModePostScript3 == FPDF_PRINTMODE_POSTSCRIPT3,
68 static_assert(WindowsPrintMode::kModePostScript2PassThrough ==
71 static_assert(WindowsPrintMode::kModePostScript3PassThrough ==
163 g_pdfium_print_mode = static_cast<WindowsPrintMode>(mode); in FPDF_SetPrintMode()