HomeSort by relevance Sort by last modified time
    Searched defs:printer (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/cloud_print/gcp20/prototype/
printer_unittest.cc 5 #include "cloud_print/gcp20/prototype/printer.h"
13 TEST(Printer, ValidateCapabilities) {
16 Printer printer; local
18 base::JSONReader::ReadAndReturnError(printer.GetRawCdd(), 0,
gcp20_device.cc 15 #include "cloud_print/gcp20/prototype/printer.h"
47 void StartPrinter(Printer* printer) {
48 bool success = printer->Start();
53 Printer* g_printer = NULL;
57 // Always do after printer.Stop() to make sure XMPP will
69 base::Bind(&Printer::Stop, base::Unretained(g_printer)));
79 Printer printer; local
96 g_message_loop->PostTask(FROM_HERE, base::Bind(&StartPrinter, &printer));
    [all...]
cloud_print_response_parser.cc 102 base::DictionaryValue* printer = NULL; local
103 if (!list->GetDictionary(0, &printer)) {
104 *error_description = "Printers list is empty or printer is not dictionary.";
109 if (!printer->GetString("id", &id)) {
227 if (!json_success) { // Let's suppose our printer was deleted.
238 base::DictionaryValue* printer = NULL; local
239 if (!list->GetDictionary(0, &printer)) {
240 *error_description = "Printers list is empty or printer is not dictionary.";
245 if (!printer->GetDictionary("local_settings", &local_settings_dict)) {
272 !settings_to_parse->GetBoolean("printer/local_printing_enabled"
    [all...]
  /frameworks/compile/mclinker/lib/Support/
MsgHandling.cpp 38 DiagnosticPrinter* printer = new TextDiagnosticPrinter(mcld::errs(), pConfig); local
39 g_pEngine->setPrinter(*printer, true);
  /external/tcpdump/
print-ppi.c 48 if_printer printer; local
68 if ((printer = lookup_printer(dlt)) != NULL) {
69 printer(h, p);
83 * This is the top level routine of the printer. 'p' points
  /external/chromium_org/chrome/browser/local_discovery/
cloud_print_printer_list.cc 39 base::DictionaryValue* printer; local
42 if (!(*i)->GetAsDictionary(&printer))
45 if (!FillPrinterDetails(*printer, &printer_details))
  /external/proguard/src/proguard/
SeedPrinter.java 89 SimpleClassPrinter printer = new SimpleClassPrinter(false, ps); local
93 new KeptClassFilter(printer),
94 new AllMemberVisitor(new KeptMemberFilter(printer))
  /external/chromium_org/chrome/service/cloud_print/
connector_settings.cc 98 Printers::const_iterator printer = printers_.find(printer_name); local
99 if (printer != printers_.end())
  /external/chromium_org/third_party/skia/tools/
compare_codereview.py 283 def printer(indent, string): function
343 printer(0, '==%s==' % bot)
344 printer(1, 'OK')
349 printer(0, '==%s==' % bot)
375 printer(1, name)
376 printer(2, status)
379 printer(1, control_name + ' and ' + roll_name + ' failed identically')
381 printer(1, name)
383 printer(indent, line)
  /external/skia/tools/
compare_codereview.py 283 def printer(indent, string): function
343 printer(0, '==%s==' % bot)
344 printer(1, 'OK')
349 printer(0, '==%s==' % bot)
375 printer(1, name)
376 printer(2, status)
379 printer(1, control_name + ' and ' + roll_name + ' failed identically')
381 printer(1, name)
383 printer(indent, line)
  /external/bison/src/
symtab.h 83 /** Any \c \%printer declared specifically for this symbol.
87 code_props printer; member in struct:symbol
150 /** Set the \c printer associated with \c sym. */
151 void symbol_printer_set (symbol *sym, code_props const *printer);
153 /** Get the computed \c \%printer for \c sym, which was initialized with
154 \c code_props_none_init if there's no \c \%printer. */
192 /** A semantic type and its associated \c \%destructor and \c \%printer.
202 /** Any \c %printer declared for this semantic type. */
203 code_props printer; member in struct:__anon5011
216 /** Set the \c printer associated with \c type. *
    [all...]
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.cc 160 std::string printer; local
161 if (list->GetString(i, &printer))
162 printers.push_back(printer);
  /external/chromium_org/cloud_print/service/win/
setup_listener.cc 63 std::string printer; local
64 if (printers->GetString(i, &printer) && !printer.empty())
65 printers_.push_back(printer);
  /external/chromium_org/printing/
emf_win_unittest.cc 27 // This test is automatically disabled if no printer named "UnitTest Printer" is
33 // It is assumed this printer is a HP Color LaserJet 4550 PCL or 4700.
34 HDC hdc = CreateDC(L"WINSPOOL", L"UnitTest Printer", NULL, NULL);
75 // Disabled if no "UnitTest printer" exist. Useful to reproduce bug 1186598.
83 settings.set_device_name(L"UnitTest Printer");
126 // Disabled if no "UnitTest printer" exists.
129 CreateDC(L"WINSPOOL", L"UnitTest Printer", NULL, NULL));
161 // Since presumably the printer is not real, let us just delete the job from
163 HANDLE printer = NULL local
    [all...]
printing_context_win_unittest.cc 24 // This test is automatically disabled if no printer is available.
57 ScopedPrinterHandle printer; variable
58 if (!printer.OpenPrinter(printer_name.c_str()))
69 if (info_2.Init(printer)) {
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_doc.py 279 printer = PrintGlxProtoText() variable
280 printer.Print( api )
  /external/mesa3d/src/mapi/glapi/gen/
glX_doc.py 279 printer = PrintGlxProtoText() variable
280 printer.Print( api )
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 83 EclipseXmlPrettyPrinter printer = new EclipseXmlPrettyPrinter(prefs, style, local
86 printer.setEndWithNewline(true);
90 printer.prettyPrint(-1, document, null, null, sb, false /*openTagOnly*/);
131 XmlPrettyPrinter printer = new EclipseXmlPrettyPrinter(prefs, style, lineSeparator); local
132 printer.setEndWithNewline(endWithNewline);
134 printer.prettyPrint(-1, node, null, null, sb, false /*openTagOnly*/);
  /cts/tests/tests/content/src/android/content/pm/cts/
ResolveInfoTest.java 26 import android.util.Printer;
71 TestPrinter printer = new TestPrinter(); local
73 resolveInfo.dump(printer, prefix);
74 assertTrue(printer.isPrintlnCalled);
77 private class TestPrinter implements Printer {
  /cts/tests/tests/os/src/android/os/cts/
LooperTest.java 26 import android.util.Printer;
40 StringBuilderPrinter printer = new StringBuilderPrinter(new StringBuilder()); local
42 Looper.getMainLooper().dump(printer, prefix);
191 class MockPrinter implements Printer {
  /external/chromium_org/base/test/
test_suite.cc 179 // Only add the custom printer if requested.
188 // Do not add the result printer if output path already exists. It's an
193 << " exists. Not adding test launcher result printer.";
197 XmlUnitTestResultPrinter* printer = new XmlUnitTestResultPrinter; local
198 CHECK(printer->Initialize(output_path));
201 listeners.Append(printer);
  /external/chromium_org/chrome/renderer/
chrome_mock_render_thread.cc 213 MockPrinter* ChromeMockRenderThread::printer() { function in class:ChromeMockRenderThread
  /external/chromium_org/components/cloud_devices/common/
printer_description_unittest.cc 15 namespace printer { namespace in namespace:cloud_devices
32 " 'printer': {"
162 " 'printer': {"
169 " 'printer': {"
183 " 'printer': {"
617 } // namespace printer
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 124 "Printer: " + info.getPrinterId().getName()
138 PrinterInfo printer = new PrinterInfo.Builder(printerId, "Printer 1") local
168 printers.add(printer);
174 PrinterInfo printer = new PrinterInfo.Builder(printerId, "Printer 2") local
206 printers.add(printer);
  /frameworks/base/core/java/android/print/
PrinterDiscoverySession.java 71 Log.e(LOG_TAG, "Error creating printer discovery session", re);
85 Log.e(LOG_TAG, "Error starting printer discovery", re);
100 Log.e(LOG_TAG, "Error stopping printer discovery", re);
107 Log.w(LOG_TAG, "Ignoring start printer state tracking - session destroyed");
113 Log.e(LOG_TAG, "Error starting printer state tracking", re);
119 Log.w(LOG_TAG, "Ignoring stop printer state tracking - session destroyed");
125 Log.e(LOG_TAG, "Error stopping printer state tracking", re);
174 Log.e(LOG_TAG, "Destroying leaked printer discovery session");
189 Log.e(LOG_TAG, "Error destroying printer discovery session", re);
205 PrinterInfo printer = addedPrinters.get(i) local
206 mPrinters.put(printer.getId(), printer); local
217 PrinterInfo printer = addedPrinters.get(i); local
218 addedPrintersMap.put(printer.getId(), printer); local
    [all...]

Completed in 726 milliseconds

1 2 3 4 5 6 7