HomeSort by relevance Sort by last modified time
    Searched refs:printer (Results 101 - 125 of 429) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 1 # Pretty-printer commands.
25 """Internal utility to parse a pretty-printer command argv.
31 printer-name;subprinter-name.
76 def printer_enabled_p(printer):
77 """Internal utility to see if printer (or subprinter) is enabled."""
78 if hasattr(printer, "enabled"):
79 return printer.enabled
87 Usage: info pretty-printer [object-regexp [name-regexp]]
93 NAME-REGEXP matches the name of the pretty-printer.
95 printer-name;subprinter-name
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
buildbot_results_unittest.py 52 printer = buildbot_results.BuildBotPrinter(stream, debug_logging=True)
53 return printer, stream
57 printer, out = self.get_printer()
62 printer.print_unexpected_results(summary)
66 printer, out = self.get_printer()
68 printer.print_unexpected_results(summary)
72 printer, out = self.get_printer()
74 printer.print_unexpected_results(summary)
77 printer, out = self.get_printer()
79 printer.print_unexpected_results(summary
    [all...]
  /system/core/libutils/
ProcessCallStack.cpp 27 #include <utils/Printer.h>
46 static void dumpProcessHeader(Printer& printer, pid_t pid, const char* timeStr) {
67 printer.printLine();
68 printer.printLine();
69 printer.printFormatLine("----- pid %d at %s -----", pid, timeStr);
70 printer.printFormatLine("Cmd line: %s", procName);
73 static void dumpProcessFooter(Printer& printer, pid_t pid) {
74 printer.printLine()
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 39 #include <google/protobuf/io/printer.h>
94 void ExtensionGenerator::GenerateDeclaration(io::Printer* printer) {
116 printer->Print(vars,
125 void ExtensionGenerator::GenerateDefinition(io::Printer* printer) {
148 printer->Print(vars,
157 printer->Print(vars,
163 printer->Print(vars,
169 void ExtensionGenerator::GenerateRegistration(io::Printer* printer)
    [all...]
cpp_file.h 48 class Printer; // printer.h
68 void GenerateHeader(io::Printer* printer);
69 void GenerateSource(io::Printer* printer);
74 void GenerateBuildDescriptors(io::Printer* printer);
76 void GenerateNamespaceOpeners(io::Printer* printer);
    [all...]
cpp_generator.cc 42 #include <google/protobuf/io/printer.h>
106 io::Printer printer(output.get(), '$');
107 file_generator.GenerateHeader(&printer);
114 io::Printer printer(output.get(), '$');
115 file_generator.GenerateSource(&printer);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 39 #include <google/protobuf/io/printer.h>
94 void ExtensionGenerator::GenerateDeclaration(io::Printer* printer) {
116 printer->Print(vars,
125 void ExtensionGenerator::GenerateDefinition(io::Printer* printer) {
148 printer->Print(vars,
157 printer->Print(vars,
163 printer->Print(vars,
169 void ExtensionGenerator::GenerateRegistration(io::Printer* printer)
    [all...]
cpp_generator.cc 42 #include <google/protobuf/io/printer.h>
104 io::Printer printer(output.get(), '$');
105 file_generator.GenerateHeader(&printer);
112 io::Printer printer(output.get(), '$');
113 file_generator.GenerateSource(&printer);
  /external/chromium_org/cloud_print/gcp20/prototype/
gcp20_device.cc 15 #include "cloud_print/gcp20/prototype/printer.h"
45 void StartPrinter(Printer* printer) {
46 bool success = printer->Start();
51 Printer* g_printer = NULL;
55 // Always do after printer.Stop() to make sure XMPP will
67 base::Bind(&Printer::Stop, base::Unretained(g_printer)));
77 Printer printer; local
94 g_message_loop->PostTask(FROM_HERE, base::Bind(&StartPrinter, &printer));
    [all...]
  /external/chromium_org/printing/
print_settings_initializer_mac.cc 14 PMPrinter printer,
22 base::SysCFStringRefToUTF16(PMPrinterGetName(printer)));
24 base::SysCFStringRefToUTF16(PMPrinterGetID(printer)));
34 OSStatus status = PMPrinterGetPrinterResolutionCount(printer,
40 PMPrinterGetIndexedPrinterResolution(printer, i, &resolution);
print_settings_initializer_mac.h 20 static void InitPrintSettings(PMPrinter printer,
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_field.h 46 class Printer; // printer.h
60 virtual void GenerateMembers(io::Printer* printer) const = 0;
61 virtual void GenerateMergingCode(io::Printer* printer) const = 0;
62 virtual void GenerateParsingCode(io::Printer* printer) const = 0;
63 virtual void GenerateSerializationCode(io::Printer* printer) const = 0
    [all...]
javamicro_enum.cc 41 #include <google/protobuf/io/printer.h>
70 void EnumGenerator::Generate(io::Printer* printer) {
71 printer->Print("// enum $classname$\n", "classname", descriptor_->name());
76 printer->Print(vars,
86 printer->Print(vars,
90 printer->Print("\n");
javamicro_file.cc 42 #include <google/protobuf/io/printer.h>
153 void FileGenerator::Generate(io::Printer* printer) {
156 printer->Print(
160 printer->Print(
166 printer->Print(
170 printer->Indent();
175 EnumGenerator(file_->enum_type(i), params_).Generate(printer);
180 MessageGenerator(file_->message_type(i), params_).Generate(printer);
187 MessageGenerator(file_->message_type(i), params_).GenerateStaticVariables(printer);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_extension.cc 39 #include <google/protobuf/io/printer.h>
128 void ExtensionGenerator::Generate(io::Printer* printer) {
131 printer->Print(vars,
134 WriteFieldDocComment(printer, descriptor_);
139 printer->Print(
150 printer->Print(
165 printer->Print(
179 printer->Print(
197 io::Printer* printer)
    [all...]
  /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:__anon2794
216 /** Set the \c printer associated with \c type. *
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_enum.cc 41 #include <google/protobuf/io/printer.h>
70 void EnumGenerator::Generate(io::Printer* printer) {
71 printer->Print("// enum $classname$\n", "classname", descriptor_->name());
76 printer->Print(vars,
86 printer->Print(vars,
90 printer->Print("\n");
javanano_extension.cc 35 #include <google/protobuf/io/printer.h>
77 void ExtensionGenerator::Generate(io::Printer* printer) const {
79 printer->Print(variables_,
85 printer->Print(variables_,
javanano_field.h 46 class Printer; // printer.h
60 virtual void GenerateMembers(io::Printer* printer) const = 0;
61 virtual void GenerateParsingCode(io::Printer* printer) const = 0;
62 virtual void GenerateSerializationCode(io::Printer* printer) const = 0;
63 virtual void GenerateSerializedSizeCode(io::Printer* printer) const = 0
    [all...]
javanano_file.cc 43 #include <google/protobuf/io/printer.h>
155 void FileGenerator::Generate(io::Printer* printer) {
158 printer->Print(
162 printer->Print(
168 printer->Print(
172 printer->Indent();
178 ExtensionGenerator(file_->extension(i), params_).Generate(printer);
183 EnumGenerator(file_->enum_type(i), params_).Generate(printer);
189 MessageGenerator(file_->message_type(i), params_).Generate(printer);
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
SelectPrinterActivity.java 35 public void onPrinterSelected(PrinterId printer) {
37 intent.putExtra(PrintJobConfigActivity.INTENT_EXTRA_PRINTER_ID, printer);
  /external/protobuf/src/google/protobuf/compiler/java/
java_extension.cc 38 #include <google/protobuf/io/printer.h>
89 void ExtensionGenerator::Generate(io::Printer* printer) {
111 printer->Print(vars,
114 printer->Print(vars,
122 printer->Print(vars,
132 void ExtensionGenerator::GenerateInitializationCode(io::Printer* printer) {
164 printer->Print(vars,
170 printer->Print(vars
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /external/chromium_org/printing/backend/
print_backend_cups.cc 106 static const char kCUPSPrinterInfoOpt[] = "printer-info";
107 static const char kCUPSPrinterStateOpt[] = "printer-state";
108 static const char kCUPSPrinterTypeOpt[] = "printer-type";
109 static const char kCUPSPrinterMakeModelOpt[] = "printer-make-and-model";
167 const cups_dest_t& printer = destinations[printer_index]; local
172 printer.num_options, printer.options);
180 printer_info.printer_name = printer.name;
181 printer_info.is_default = printer.is_default;
184 printer.num_options, printer.options)
275 const cups_dest_t& printer = destinations[printer_index]; local
    [all...]

Completed in 607 milliseconds

1 2 3 45 6 7 8 91011>>