HomeSort by relevance Sort by last modified time
    Searched refs:printing (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
printing_unittest.py 30 """Unit tests for printing.py."""
40 from webkitpy.layout_tests.layout_package import printing namespace
49 print_options = printing.print_options()
58 handler = printing._configure_logging(stream, options.verbose)
66 printing._restore_logging(handler)
70 handler = printing._configure_logging(stream, options.verbose)
73 printing._restore_logging(handler)
88 switches = printing.parse_print_options(options.print_options,
95 test_switches([], printing.PRINT_DEFAULT)
98 test_switches([], printing.PRINT_EVERYTHING, verbose=True
    [all...]
manager_worker_broker.py 48 import printing namespace
325 printer = printing.Printer(port_obj, options, sys.stderr, sys.stdout,
manager_worker_broker_unittest.py 45 from webkitpy.layout_tests.layout_package import printing namespace
109 printing.print_options() +
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
__init__.py 36 Pretty printing::
  /external/webkit/Source/WebCore/rendering/
RenderView.cpp 82 if (!printing() && m_frameView)
88 if (!printing() && m_frameView)
114 if (printing())
118 bool relayoutChildren = !printing() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
258 if (printing() || r.width() == 0 || r.height() == 0)
311 if (printing())
587 bool RenderView::printing() const function in class:WebCore::RenderView
589 return document()->printing();
656 if (printing())
702 if (!printing() && m_frameView)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests.py 41 from layout_package import printing namespace
72 printer = printing.Printer(port, options, regular_output, buildbot_output,
216 print_options = printing.print_options()
  /external/chromium/chrome/browser/printing/
printer_query.cc 5 #include "chrome/browser/printing/printer_query.h"
10 #include "chrome/browser/printing/print_job_worker.h"
12 namespace printing { namespace
148 } // namespace printing
print_job_manager.cc 5 #include "chrome/browser/printing/print_job_manager.h"
9 #include "chrome/browser/printing/print_job.h"
10 #include "chrome/browser/printing/printer_query.h"
13 #include "printing/printed_document.h"
14 #include "printing/printed_page.h"
16 namespace printing { namespace
174 } // namespace printing
print_job.cc 5 #include "chrome/browser/printing/print_job.h"
10 #include "chrome/browser/printing/print_job_worker.h"
12 #include "printing/printed_document.h"
13 #include "printing/printed_page.h"
17 namespace printing { namespace
355 } // namespace printing
print_view_manager.cc 5 #include "chrome/browser/printing/print_view_manager.h"
10 #include "chrome/browser/printing/print_job.h"
11 #include "chrome/browser/printing/print_job_manager.h"
12 #include "chrome/browser/printing/print_preview_tab_controller.h"
13 #include "chrome/browser/printing/printer_query.h"
22 #include "printing/metafile.h"
23 #include "printing/metafile_impl.h"
24 #include "printing/printed_document.h"
40 namespace printing { namespace
223 // Don't care about the actual printing process
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 73 // For printing, there shouldn't be any canvas. canvas can be NULL. If you
163 // Returns if the context is a printing context instead of a display
164 // context. Bitmap shouldn't be resampled when printing to keep the best
166 bool printing() const { return m_printing; } function in class:WebCore::PlatformContextSkia
ImageSkia.cpp 273 resampling = platformContext->printing() ? RESAMPLE_NONE :
376 if (context->platformContext()->printing())
  /external/chromium/chrome/browser/
browser_main_posix.cc 25 #include "chrome/browser/printing/print_dialog_gtk.h"
259 printing::PrintingContextCairo::SetCreatePrintDialogFunction(
browser_process_impl.cc 46 #include "chrome/browser/printing/print_job_manager.h"
47 #include "chrome/browser/printing/print_preview_tab_controller.h"
134 print_job_manager_.reset(new printing::PrintJobManager);
548 printing::PrintJobManager* BrowserProcessImpl::print_job_manager() {
557 printing::PrintPreviewTabController*
853 // Initialize and set up notifications for the printing enabled
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 82 if (m_element->document()->printing())
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.cc 23 #include "chrome/browser/printing/print_preview_message_handler.h"
70 print_view_manager_.reset(new printing::PrintViewManager(contents));
81 print_preview_.reset(new printing::PrintPreviewMessageHandler(contents));
  /external/v8/test/mjsunit/
cyclic-array-to-string.js 28 // Test printing of cyclic arrays.
with-function-expression.js 34 // depending on the exact printing of the function.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
shell.js 108 * Begin printing functions. These functions use the shell's
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 233 void GraphicsContext::drawLineForText(const IntPoint& origin, int width, bool printing)
246 UNUSED_PARAM(printing);
  /external/chromium/chrome/browser/tab_contents/
tab_contents.h 86 namespace printing { namespace
602 // tab for the printing facility.
606 // asynchronous, the actual printing will not be completed on the return of
607 // this function. Returns false if printing is impossible at the moment.
610 // Notify the completion of a printing job.
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
shell.js 133 * Begin printing functions. These functions use the shell's
  /external/webkit/Source/WebCore/page/
Frame.cpp 516 void Frame::setPrinting(bool printing, const FloatSize& pageSize, float maximumShrinkRatio, AdjustViewSizeOrNot shouldAdjustViewSize)
518 m_doc->setPrinting(printing);
519 view()->adjustMediaTypeForPrinting(printing);
524 // Subframes of the one we're printing don't lay out to the page size.
526 child->setPrinting(printing, IntSize(), 0, shouldAdjustViewSize);
    [all...]
Frame.h 150 void setPrinting(bool printing, const FloatSize& pageSize, float maximumShrinkRatio, AdjustViewSizeOrNot);
FrameView.h 170 void adjustMediaTypeForPrinting(bool printing);

Completed in 1235 milliseconds

12 3 4 5