HomeSort by relevance Sort by last modified time
    Searched refs:printers (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/extensions/api/cloud_print_private/
cloud_print_private_apitest.cc 81 settings.printers.size() == 2 &&
82 settings.printers[0]->name == "printer1" &&
83 !settings.printers[0]->connect &&
84 settings.printers[1]->name == "printer2" &&
85 settings.printers[1]->connect;
106 std::vector<std::string> printers; local
107 printers.push_back("printer1");
108 printers.push_back("printer2");
110 .WillRepeatedly(Return(printers));
  /frameworks/base/core/java/android/print/
IPrinterDiscoveryObserver.aidl 24 * Interface for observing discovered printers by a discovery session.
29 void onPrintersAdded(in ParceledListSlice printers);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
30 Individual printers in a collection are named as
85 """GDB command to list all registered pretty-printers.
94 Individual printers in a collection are named as
120 # Plus we want to give the user a way to list unknown printers.
124 """Print a list of pretty-printers."""
125 # A potential enhancement is to provide an option to list printers in
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
162 self.invoke1("progspace %s pretty-printers:" % cp.filename,
166 self.invoke1(" objfile %s pretty-printers:" % objfile.filename
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
30 Individual printers in a collection are named as
85 """GDB command to list all registered pretty-printers.
94 Individual printers in a collection are named as
120 # Plus we want to give the user a way to list unknown printers.
124 """Print a list of pretty-printers."""
125 # A potential enhancement is to provide an option to list printers in
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
162 self.invoke1("progspace %s pretty-printers:" % cp.filename,
166 self.invoke1(" objfile %s pretty-printers:" % objfile.filename
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
30 Individual printers in a collection are named as
85 """GDB command to list all registered pretty-printers.
94 Individual printers in a collection are named as
120 # Plus we want to give the user a way to list unknown printers.
124 """Print a list of pretty-printers."""
125 # A potential enhancement is to provide an option to list printers in
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
162 self.invoke1("progspace %s pretty-printers:" % cp.filename,
166 self.invoke1(" objfile %s pretty-printers:" % objfile.filename
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 17 """GDB commands for working with pretty-printers."""
30 Individual printers in a collection are named as
85 """GDB command to list all registered pretty-printers.
94 Individual printers in a collection are named as
120 # Plus we want to give the user a way to list unknown printers.
124 """Print a list of pretty-printers."""
125 # A potential enhancement is to provide an option to list printers in
159 self.invoke1("global pretty-printers:", gdb.pretty_printers,
162 self.invoke1("progspace %s pretty-printers:" % cp.filename,
166 self.invoke1(" objfile %s pretty-printers:" % objfile.filename
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
FusedPrintersProvider.java 57 * This class is responsible for loading printers by doing discovery
58 * and merging the discovered printers with the previously used ones.
92 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
94 // Add the updated favorite printers.
101 printers.add(updatedPrinter);
103 printers.add(favoritePrinter);
107 // Add other updated printers.
114 printers.add(updatedPrinter);
118 // Add the new printers, i.e. what is left.
119 printers.addAll(discoveredPrinters.values())
188 List<PrinterInfo> printers = mDiscoverySession.getPrinters(); local
449 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
    [all...]
  /external/chromium_org/chrome/browser/printing/
print_system_task_proxy.cc 71 VLOG(1) << "Enumerate printers start";
72 ListValue* printers = new ListValue; local
77 // Record the total number of printers.
97 printers->Append(printer_info);
99 VLOG(1) << "Enumerate printers finished, found " << i << " printers";
103 base::Bind(&PrintSystemTaskProxy::SetupPrinterList, this, printers));
106 void PrintSystemTaskProxy::SetupPrinterList(ListValue* printers) {
108 handler_->SetupPrinterList(*printers);
109 delete printers;
    [all...]
print_system_task_proxy.h 79 void SetupPrinterList(base::ListValue* printers);
  /external/chromium_org/chrome/service/cloud_print/
connector_settings.cc 80 const base::ListValue* printers = prefs->GetList(prefs::kCloudPrintPrinters); local
81 if (printers) {
82 for (size_t i = 0; i < printers->GetSize(); ++i) {
84 if (printers->GetDictionary(i, &dictionary) && dictionary) {
99 Printers::const_iterator printer = printers_.find(printer_name);
  /external/chromium_org/cloud_print/service/win/
chrome_launcher.h 31 const std::vector<std::string>& printers);
setup_listener.cc 23 const char SetupListener::kPrintersJsonValueName[] = "printers";
60 const base::ListValue* printers = NULL; local
61 if (dictionary->GetList(kPrintersJsonValueName, &printers) && printers) {
62 for (size_t i = 0; i < printers->GetSize(); ++i) {
64 if (printers->GetString(i, &printer) && !printer.empty())
service_listener.cc 27 scoped_ptr<base::ListValue> printers(new base::ListValue());
29 printers->AppendString(printer_list[i].printer_name);
33 environment.Set(SetupListener::kPrintersJsonValueName, printers.release());
cloud_print_service.cc 216 std::vector<std::string> printers; local
218 &user_data_dir, &printers);
225 hr = SetupServiceState(user_data_dir, printers);
263 std::vector<std::string>* printers) {
317 std::copy(setup.printers().begin(), setup.printers().end(), cout_it);
321 *printers = setup.printers();
326 const std::vector<std::string>& printers) {
342 ChromeLauncher::CreateServiceStateFile(proxy_id, printers);
    [all...]
setup_listener.h 58 const std::vector<std::string>& printers() const { function in class:SetupListener
  /external/llvm/utils/unittest/
CMakeLists.txt 45 googletest/gtest-printers.cc
  /frameworks/base/core/java/android/printservice/
IPrintServiceClient.aidl 38 void onPrintersAdded(in ParceledListSlice printers);
PrinterDiscoverySession.java 34 * for adding discovered printers, removing previously added printers that
35 * disappeared, and updating already added printers.
41 * to stop printer discovery. When the system is no longer interested in printers
47 * Discovered printers are added by invoking {@link
48 * PrinterDiscoverySession#addPrinters(List)}. Added printers that disappeared are
50 * printers whose properties or capabilities changed are updated through a call to
51 * {@link PrinterDiscoverySession#addPrinters(List)}. The printers added in this
52 * session can be acquired via {@link #getPrinters()} where the returned printers
53 * will be an up-to-date snapshot of the printers that you reported during th
    [all...]
  /external/chromium/chrome/browser/ui/webui/
print_preview_handler.h 42 // Get the list of printers. |args| is unused.
61 // Send the list of printers to the Web UI.
62 void SendPrinterList(const ListValue& printers,
print_preview_handler.cc 97 ListValue* printers = new ListValue; local
105 printers->Append(new StringValue(index->printer_name));
114 printers,
118 void SendPrinterList(ListValue* printers,
121 handler_->SendPrinterList(*printers, *default_printer_index);
122 delete printers;
321 const ListValue& printers,
323 web_ui_->CallJavascriptFunction("setPrinters", printers,
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
type_printers.py 20 """GDB commands for working with type-printers."""
23 """GDB command to list all registered type-printers.
25 Usage: info type-printers
29 super(InfoTypePrinter, self).__init__("info type-printers",
33 """Print a list of type printers."""
34 # A potential enhancement is to provide an option to list printers in
50 print ("%sType printers for %s:" % (sep, objfile.name))
54 print ("%sType printers for program space:" % sep)
58 print ("%sGlobal type printers:" % sep)
66 def set_some(self, name, printers)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/
type_printers.py 20 """GDB commands for working with type-printers."""
23 """GDB command to list all registered type-printers.
25 Usage: info type-printers
29 super(InfoTypePrinter, self).__init__("info type-printers",
33 """Print a list of type printers."""
34 # A potential enhancement is to provide an option to list printers in
50 print ("%sType printers for %s:" % (sep, objfile.name))
54 print ("%sType printers for program space:" % sep)
58 print ("%sGlobal type printers:" % sep)
66 def set_some(self, name, printers)
    [all...]
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 167 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
168 printers.add(printer);
169 addPrinters(printers);
205 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
206 printers.add(printer);
207 addPrinters(printers);
  /packages/experimental/PrintService/src/foo/bar/printservice/
MyPrintService.java 398 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
399 printers.add(printer);
400 addPrinters(printers);
415 List<PrinterInfo> printers = mFakePrinters.subList(0, mFakePrinters.size()/* / 2*/); local
416 addPrinters(printers);
420 // List<PrinterInfo> printers = mFakePrinters.subList(mFakePrinters.size() / 2,
422 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local
425 printers.add(mFakePrinters.get(i));
427 addPrinters(printers);
431 List<PrinterInfo> printers = getPrinters() local
    [all...]
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.h 61 std::vector<std::string>* printers);

Completed in 543 milliseconds

1 2 3