HomeSort by relevance Sort by last modified time
    Searched defs:metafile (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/printing/
printed_document_mac.cc 32 const Metafile* metafile = page.metafile(); local
33 // Each Metafile is a one-page PDF, and pages use 1-based indexing.
35 struct Metafile::MacRenderPageParams params;
37 metafile->RenderPage(page_number, context, content_area.ToCGRect(), params);
printed_page.cc 10 Metafile* metafile,
14 metafile_(metafile),
25 const Metafile* PrintedPage::metafile() const { function in class:printing::PrintedPage
image.cc 13 #include "printing/metafile.h"
40 Image::Image(const Metafile& metafile)
43 LoadMetafile(metafile);
153 NativeMetafile metafile; local
154 if (!metafile.InitFromData(data.data(),
157 return LoadMetafile(metafile);
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusMetaFile.h 11 * Metafile related declarations
18 class Metafile : public Image
23 // Read a metafile
24 Metafile()
30 // Playback a metafile from a HMETAFILE
31 // If deleteWmf is TRUE, then when the metafile is deleted,
33 Metafile(IN HMETAFILE hWmf,
37 GpMetafile * metafile = NULL; local
39 lastResult = DllExports::GdipCreateMetafileFromWmf(hWmf, deleteWmf, apmFileHeader, &metafile);
41 SetNativeImage(metafile);
50 GpMetafile * metafile = NULL; local
60 GpMetafile * metafile = NULL; local
72 GpMetafile * metafile = NULL; local
82 GpMetafile * metafile = NULL; local
96 GpMetafile * metafile = NULL; local
114 GpMetafile * metafile = NULL; local
132 GpMetafile * metafile = NULL; local
149 GpMetafile * metafile = NULL; local
168 GpMetafile * metafile = NULL; local
187 GpMetafile * metafile = NULL; local
204 GpMetafile * metafile = NULL; local
223 GpMetafile * metafile = NULL; local
242 GpMetafile * metafile = NULL; local
    [all...]
  /external/chromium_org/android_webview/renderer/
print_web_view_helper_linux.cc 13 #include "printing/metafile.h"
37 scoped_ptr<Metafile> draft_metafile;
38 Metafile* initial_render_metafile = print_preview_context_.metafile();
57 print_preview_context_.metafile()->GetMetafileForCurrentPage());
65 NativeMetafile metafile; local
66 if (!metafile.Init())
92 PrintPageInternal(page_params, canvas_size, frame, &metafile);
95 // blink::printEnd() for PDF should be called before metafile is closed.
98 metafile.FinishDocument()
    [all...]
print_web_view_helper.cc 26 #include "printing/metafile.h"
1140 PreviewMetafile* metafile = print_preview_context_.metafile(); local
2005 PreviewMetafile* PrintWebViewHelper::PrintPreviewContext::metafile() { function in class:printing::__anon6454::PrintWebViewHelper::PrintPreviewContext
    [all...]
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper_linux.cc 11 #include "printing/metafile.h"
35 scoped_ptr<Metafile> draft_metafile;
36 Metafile* initial_render_metafile = print_preview_context_.metafile();
55 print_preview_context_.metafile()->GetMetafileForCurrentPage());
63 NativeMetafile metafile; local
64 if (!metafile.Init())
90 PrintPageInternal(page_params, canvas_size, frame, &metafile);
93 // blink::printEnd() for PDF should be called before metafile is closed.
96 metafile.FinishDocument()
    [all...]
print_web_view_helper_pdf_win.cc 12 #include "printing/metafile.h"
32 scoped_ptr<Metafile> draft_metafile;
33 Metafile* initial_render_metafile = print_preview_context_.metafile();
54 print_preview_context_.metafile()->GetMetafileForCurrentPage());
62 NativeMetafile metafile; local
63 if (!metafile.Init())
93 &metafile,
98 // blink::printEnd() for PDF should be called before metafile is closed.
101 metafile.FinishDocument()
    [all...]
mock_printer.cc 217 printing::PdfMetafileCg metafile; local
219 printing::NativeMetafile metafile; local
221 metafile.InitFromData(metafile_data.memory(), params.data_size);
222 printing::Image image(metafile);
print_web_view_helper.cc 29 #include "printing/metafile.h"
1168 PreviewMetafile* metafile = print_preview_context_.metafile(); local
2010 PreviewMetafile* PrintWebViewHelper::PrintPreviewContext::metafile() { function in class:printing::__anon10387::PrintWebViewHelper::PrintPreviewContext
    [all...]
  /external/chromium_org/chrome/service/
service_utility_process_host.cc 271 // If the metafile was successfully created, we need to take our hands off the
272 // scratch metafile directory. The client will delete it when it is done with
273 // metafile.
373 // The metafile was created in a temp folder which needs to get deleted after
377 LOG(WARNING) << "Unable to set scratch metafile directory";
379 // It's important that metafile is declared after scratch_metafile_dir so
380 // that the metafile destructor closes the file before the base::ScopedTempDir
382 printing::Emf metafile; local
383 if (!metafile.InitFromFile(metafile_path)) {
386 OnRenderPDFPagesToMetafileSucceeded(metafile,
    [all...]
  /external/chromium_org/chrome/utility/
printing_handler.cc 371 printing::Emf metafile; local
372 metafile.InitToFile(metafile_path.InsertBeforeExtensionASCII(
376 // Current metafile is based on screen DC and have current screen size.
382 *scale_factor = gfx::CalculatePageScale(metafile.context(),
385 gfx::ScaleDC(metafile.context(), *scale_factor);
387 // The underlying metafile is of type Emf and ignores the arguments passed
389 metafile.StartPage(gfx::Size(), gfx::Rect(), 1);
391 &buffer.front(), buffer.size(), page_number, metafile.context(),
400 metafile.FinishPage();
401 metafile.FinishDocument()
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.cc 1199 HENHMETAFILE metafile = CloseEnhMetaFile(hdc); local
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 95 #include "printing/metafile.h"
1945 printing::Metafile* metafile = local
1951 printing::Metafile* metafile = local
    [all...]

Completed in 321 milliseconds