/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/ |
.gdbinit | 6 import stlport.printers 7 stlport.printers.register_stlport_printers (None) 9 # stlport.printers.stlport_version = 5.2 10 # stlport.printers.print_vector_with_indices = False
|
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/ |
.gdbinit | 6 import stlport.printers 7 stlport.printers.register_stlport_printers (None) 9 # stlport.printers.stlport_version = 5.2 10 # stlport.printers.print_vector_with_indices = False
|
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/ |
.gdbinit | 6 import stlport.printers 7 stlport.printers.register_stlport_printers (None) 9 # stlport.printers.stlport_version = 5.2 10 # stlport.printers.print_vector_with_indices = False
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/ |
README | 1 GDB pretty printers for STLport 4 This python module provides GDB pretty printers for the containers from 21 import stlport.printers 22 stlport.printers.register_stlport_printers (None) 25 # stlport.printers.stlport_version = 5.2 26 # stlport.printers.print_vector_with_indices = False 34 To test the pretty printers, go to the test directory and set up the STLport 37 the pretty printers work the variables from test.cpp should be displayed in a 43 load stlport/printers.py.
|
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/ |
README | 1 GDB pretty printers for STLport 4 This python module provides GDB pretty printers for the containers from 21 import stlport.printers 22 stlport.printers.register_stlport_printers (None) 25 # stlport.printers.stlport_version = 5.2 26 # stlport.printers.print_vector_with_indices = False 34 To test the pretty printers, go to the test directory and set up the STLport 37 the pretty printers work the variables from test.cpp should be displayed in a 43 load stlport/printers.py.
|
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/ |
README | 1 GDB pretty printers for STLport 4 This python module provides GDB pretty printers for the containers from 21 import stlport.printers 22 stlport.printers.register_stlport_printers (None) 25 # stlport.printers.stlport_version = 5.2 26 # stlport.printers.print_vector_with_indices = False 34 To test the pretty printers, go to the test directory and set up the STLport 37 the pretty printers work the variables from test.cpp should be displayed in a 43 load stlport/printers.py.
|
/frameworks/base/core/java/android/printservice/ |
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...] |
package.html | 5 that know how to talk to printers via some standard protocols. These services serve as a 6 bridge between the system and the printers. Hence, the printer and print protocol specific 16 there are active print jobs for the printers managed by the service. The print service
|
/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...] |
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 155 self.invoke1("global pretty-printers:", gdb.pretty_printers, 158 self.invoke1("progspace %s pretty-printers:" % cp.filename, 162 self.invoke1(" objfile %s pretty-printers:" % objfile.filename [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...] |
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 155 self.invoke1("global pretty-printers:", gdb.pretty_printers, 158 self.invoke1("progspace %s pretty-printers:" % cp.filename, 162 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. 95 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local 97 // Add the updated favorite printers. 104 printers.add(updatedPrinter); 106 printers.add(favoritePrinter); 110 // Add other updated printers. 117 printers.add(updatedPrinter); 121 // Add the new printers, i.e. what is left. 122 printers.addAll(discoveredPrinters.values()) 196 List<PrinterInfo> printers = mDiscoverySession.getPrinters(); local 528 List<PrinterInfo> printers = new ArrayList<PrinterInfo>(); local [all...] |
/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/ |
PrinterDiscoverySession.java | 77 Log.w(LOG_TAG, "Ignoring start printers dsicovery - session destroyed"); 92 Log.w(LOG_TAG, "Ignoring stop printers discovery - session destroyed"); 131 Log.w(LOG_TAG, "Ignoring validate printers - session destroyed"); 137 Log.e(LOG_TAG, "Error validating printers", re); 150 Log.w(LOG_TAG, "Ignoring get printers - session destroyed"); 201 // No old printers - do not bother keeping their position. 212 // Add the printers to a map. 221 // Update printers we already have. 229 // Add the new printers, i.e. what is left. 276 List<PrinterInfo> printers = (List<PrinterInfo>) message.obj local [all...] |
IPrinterDiscoveryObserver.aidl | 24 * Interface for observing discovered printers by a discovery session. 29 void onPrintersAdded(in ParceledListSlice printers);
|
/external/chromium_org/chrome/service/cloud_print/ |
connector_settings.h | 75 // If |true| printers that are not found locally will be deleted on GCP 79 // If true register all new printers in cloud print. 89 typedef std::set<std::string> Printers; 90 Printers 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...] |
/external/chromium_org/cloud_print/service/win/ |
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())
|
/external/llvm/device/include/llvm/Config/ |
AsmPrinters.def | 1 //===- llvm/Config/AsmPrinters.def - LLVM Assembly Printers -----*- C++ -*-===// 10 // This file enumerates all of the assembly-language printers 15 // targets with assembly printers.
|
/external/llvm/host/include/llvm/Config/ |
AsmPrinters.def | 1 //===- llvm/Config/AsmPrinters.def - LLVM Assembly Printers -----*- C++ -*-===// 10 // This file enumerates all of the assembly-language printers 15 // targets with assembly printers.
|
/external/llvm/include/llvm/Config/ |
AsmPrinters.def.in | 1 /*===- llvm/Config/AsmPrinters.def - LLVM Assembly Printers -----*- C++ -*-===*\ 10 |* This file enumerates all of the assembly-language printers *| 15 |* targets with assembly printers. *|
|