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

1 2 3 45 6 7 8 91011>>

  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.h 46 class Printer; // printer.h
65 void GenerateDeclaration(io::Printer* printer);
68 void GenerateDefinition(io::Printer* printer);
71 void GenerateRegistration(io::Printer* printer);
  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2-sources.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.2-sources.jar 
lombok-ast-0.2.1-sources.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2-sources.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2-sources.jar 
  /system/core/libutils/
Printer.cpp 17 #define LOG_TAG "Printer"
20 #include <utils/Printer.h>
31 * Implementation of Printer
33 Printer::Printer() {
37 Printer::~Printer() {
41 void Printer::printFormatLine(const char* format, ...) {
152 PrefixPrinter::PrefixPrinter(Printer& printer, const char* prefix)
    [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(
87 printer->Print("@java.lang.annotation.Retention("
90 printer->Indent();
95 printer->Print("$classname$.$name$,\n",
99 printer->Print("$name$,\n", "name", constant_name);
102 printer->Outdent();
103 printer->Print("})\n")
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.cc 43 #include <google/protobuf/io/printer.h>
86 void EnumGenerator::Generate(io::Printer* printer) {
87 WriteEnumDocComment(printer, descriptor_);
89 printer->Print(
94 printer->Print(
99 printer->Indent();
106 WriteEnumValueDocComment(printer, canonical_values_[i]);
108 printer->Print("@java.lang.Deprecated\n");
110 printer->Print(vars
    [all...]
java_file.cc 49 #include <google/protobuf/io/printer.h>
209 void FileGenerator::Generate(io::Printer* printer) {
212 printer->Print(
218 printer->Print(
223 printer->Print(
227 printer->Indent();
231 printer->Print(
236 printer->Indent();
239 extension_generators_[i]->GenerateRegistrationCode(printer);
    [all...]
  /frameworks/base/core/java/android/printservice/
PrinterDiscoverySession.java 33 * system during printer discovery. During printer discovery you are responsible
38 * performing printer discovery multiple times. You will receive a call to {@link
39 * PrinterDiscoverySession#onStartPrinterDiscovery(List)} to start printer
41 * to stop printer discovery. When the system is no longer interested in printers
58 * need to update some printers. It is possible that you add a printer without
60 * printers for their capabilities, rather querying the capabilities of a printer
61 * only if necessary. For example, the system will request that you update a printer
67 * printer you will receive a call to {@link #onStartPrinterStateTracking(PrinterId)}
69 * changes in the printer state and capabilities. You also <strong>must</strong
    [all...]
  /external/llvm/lib/Target/BPF/
BPFMCInstLower.h 30 AsmPrinter &Printer;
33 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
34 : Ctx(ctx), Printer(printer) {}
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.h 30 AsmPrinter &Printer;
32 MSP430MCInstLower(MCContext &ctx, AsmPrinter &printer)
33 : Ctx(ctx), Printer(printer) {}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
printer.h 16 void *isl_printer_free(__isl_take isl_printer *printer);
18 isl_ctx *isl_printer_get_ctx(__isl_keep isl_printer *printer);
19 FILE *isl_printer_get_file(__isl_keep isl_printer *printer);
21 __isl_give char *isl_printer_get_str(__isl_keep isl_printer *printer);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
printer.h 16 void *isl_printer_free(__isl_take isl_printer *printer);
18 isl_ctx *isl_printer_get_ctx(__isl_keep isl_printer *printer);
19 FILE *isl_printer_get_file(__isl_keep isl_printer *printer);
21 __isl_give char *isl_printer_get_str(__isl_keep isl_printer *printer);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_primitive_field.cc 41 #include <google/protobuf/io/printer.h>
225 GenerateMembers(io::Printer* printer) const {
226 printer->Print(variables_,
232 printer->Print(variables_,
248 printer->Print(variables_,
260 printer->Print(variables_,
276 GenerateMergingCode(io::Printer* printer) const {
277 printer->Print(variables_
    [all...]
  /system/core/include/utils/
ProcessCallStack.h 30 class Printer;
54 // Dump a serialized representation of all the stack traces to the specified printer.
55 void print(Printer& printer) const;
61 void printInternal(Printer& printer, Printer& csPrinter) const;
  /external/clang/test/SemaObjCXX/
format-strings.mm 43 class Printer {
50 void use_class(Printer<const char *> &p) {
58 class Printer {
69 class Printer {
77 void use_class(Wrapper<const char *>::Printer &p) {
  /external/protobuf/src/google/protobuf/io/
printer.cc 35 #include <google/protobuf/io/printer.h>
43 Printer::Printer(ZeroCopyOutputStream* output, char variable_delimiter)
52 Printer::~Printer() {
59 void Printer::Print(const map<string, string>& variables, const char* text) {
113 void Printer::Print(const char* text) {
118 void Printer::Print(const char* text,
125 void Printer::Print(const char* text,
134 void Printer::Print(const char* text
    [all...]
  /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...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1-sources.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3-sources.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3-sources.jar 
  /cts/tests/tests/print/src/android/print/cts/
PrinterDiscoverySessionLifecycleTest.java 57 private static final String FIRST_PRINTER_NAME = "First printer";
58 private static final String SECOND_PRINTER_NAME = "Second printer";
102 // Select the first printer.
105 // Wait for layout as the printer has different capabilities.
108 // Select the second printer (same capabilities as the other
112 // While the printer discovery session is still alive store the
114 // but only the print service can create printer ids which means
120 assertNotNull("Coundn't find printer:" + FIRST_PRINTER_LOCAL_ID, firstPrinterId);
121 assertNotNull("Coundn't find printer:" + SECOND_PRINTER_LOCAL_ID, secondPrinterId);
137 // We selected the first printer and now it should be tracked
    [all...]
  /external/mesa3d/src/mapi/shared-glapi/
SConscript 8 def mapi_objects(env, printer, mode):
9 """Return mapi objects built for the given printer and mode."""
26 header_name = '%s-tmp.h' % (printer)
34 '--printer %s --mode lib $SOURCE > $TARGET' % (printer),
61 target = '%s-%s' % (printer, s[:-2]),

Completed in 270 milliseconds

1 2 3 45 6 7 8 91011>>