/external/protobuf/src/google/protobuf/compiler/javamicro/ |
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...] |
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");
|
/external/clang/unittests/AST/ |
NamedDeclPrinterTest.cpp | 1 //===- unittests/AST/NamedDeclPrinterTest.cpp --- NamedDecl printer tests -===// 68 PrintMatch Printer(SuppressUnwrittenScope); 70 Finder.addMatcher(NodeMatch, &Printer); 78 if (Printer.getNumFoundDecls() == 0) 82 if (Printer.getNumFoundDecls() > 1) 85 "(found " << Printer.getNumFoundDecls() << ")"; 87 if (Printer.getPrinted() != ExpectedPrinted) 90 "got \"" << Printer.getPrinted().str() << "\"";
|
/external/llvm/test/CodeGen/Generic/ |
print-machineinstrs.ll | 6 ; CHECK: -branch-folder -machineinstr-printer 8 ; CHECK-NEXT: MachineFunction Printer
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_file.h | 47 class Printer; // printer.h 75 void Generate(io::Printer* printer); 89 void GenerateDescriptorInitializationCodeForImmutable(io::Printer* printer); 90 void GenerateDescriptorInitializationCodeForMutable(io::Printer* printer);
|
java_extension.cc | 41 #include <google/protobuf/io/printer.h> 112 void ImmutableExtensionGenerator::Generate(io::Printer* printer) { 117 printer->Print(vars, 120 WriteFieldDocComment(printer, descriptor_); 125 printer->Print( 136 printer->Print( 151 printer->Print( 166 printer->Print( 185 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:__anon4743 216 /** Set the \c printer associated with \c type. * [all...] |
/external/clang/test/Misc/ |
diag-special-chars.c | 6 // this character does not cause problems with the diagnostic 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...] |
/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
|
/frameworks/base/core/java/android/printservice/ |
package.html | 6 bridge between the system and the printers. Hence, the printer and print protocol specific 17 should also perform printer discovery in a timely fashion to ensure good user experience. 18 The interaction between the system and the print service during printer discovery is
|
/frameworks/base/core/java/android/util/ |
PrintStreamPrinter.java | 22 * Implementation of a {@link android.util.Printer} that sends its output 25 public class PrintStreamPrinter implements Printer { 29 * Create a new Printer that sends to a PrintWriter object.
|
PrintWriterPrinter.java | 22 * Implementation of a {@link android.util.Printer} that sends its output 25 public class PrintWriterPrinter implements Printer { 29 * Create a new Printer that sends to a PrintWriter object.
|
StringBuilderPrinter.java | 20 * Implementation of a {@link android.util.Printer} that sends its output 23 public class StringBuilderPrinter implements Printer { 27 * Create a new Printer that sends to a StringBuilder object.
|
LogPrinter.java | 20 * Implementation of a {@link android.util.Printer} that sends its output 23 public class LogPrinter implements Printer { 29 * Create a new Printer that sends to the log with the given priority
|
/external/protobuf/src/google/protobuf/compiler/ |
mock_code_generator.cc | 41 #include <google/protobuf/io/printer.h> 162 io::Printer printer(output.get(), '$'); 163 printer.PrintRaw(GetOutputFileContent(name_, "first_insert", 165 if (printer.failed()) { 175 io::Printer printer(output.get(), '$'); 176 printer.PrintRaw(GetOutputFileContent(name_, "second_insert", 178 if (printer.failed()) { 188 io::Printer printer(output.get(), '$') [all...] |
/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 {
|
PackageItemInfoTest.java | 30 import android.util.Printer; 62 MockPrinter printer = new MockPrinter(); local 64 pkgItemInfo.dumpBack(printer, ""); 68 pkgItemInfo.dumpFront(printer, prefix); 115 public void dumpFront(Printer pw, String prefix) { 119 public void dumpBack(Printer pw, String prefix) { 124 private class MockPrinter implements Printer {
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
EditorInfoTest.java | 24 import android.util.Printer; 74 TestPrinter printer = new TestPrinter(); local 76 info.dump(printer, prefix); 77 assertTrue(printer.isPrintlnCalled); 80 private class TestPrinter implements Printer {
|
/frameworks/base/core/java/android/print/ |
package.html | 38 An available printer represented by the {@link android.print.PrinterInfo} class has a 40 android.print.PrinterInfo} contains printer properties such as id, name, description, status, 41 and printer capabilities encapsulated in the {@link android.print.PrinterCapabilitiesInfo} 42 class. Printer capabilities describe how a printer can print content, for example what are
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
FusedPrintersProvider.java | 92 public void addHistoricalPrinter(PrinterInfo printer) { 93 mPersistenceManager.addPrinterAndWritePrinterHistory(printer); 116 PrinterInfo printer = mPrinters.get(i); local 118 printer.getId()); 215 // Some of the found printers may have be a printer that is in the 217 // printer to use its current name instead of the historical one. 223 PrinterInfo printer = printers.get(i); local 224 printersMap.put(printer.getId(), printer); local 308 // Remove the printer from the favorites 386 PrinterInfo printer = printers.get(i); local 449 PrinterInfo printer = printers.get(i); local 470 PrinterInfo printer = favoriteRecords.get(i).printer; local 478 public final PrinterInfo printer; field in class:FusedPrintersProvider.PersistenceManager.PrinterRecord 630 PrinterInfo printer = builder.build(); local 696 PrinterInfo printer = printers.get(i); local [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_file.cc | 43 #include <google/protobuf/io/printer.h> 162 void FileGenerator::Generate(io::Printer* printer) { 165 printer->Print( 168 printer->Print( 177 printer->Print( 182 printer->Indent(); 188 ExtensionGenerator(file_->extension(i), params_).Generate(printer); 193 EnumGenerator(file_->enum_type(i), params_).Generate(printer); 199 MessageGenerator(file_->message_type(i), params_).Generate(printer); [all...] |
/frameworks/base/packages/PrintSpooler/res/values-in/ |
strings.xml | 38 <string name="all_printers" msgid="5018829726861876202">"Semua printer?"</string> 50 <string name="all_printers_label" msgid="3178848870161526399">"Semua printer"</string> 54 <string name="print_add_printer" msgid="1088656468360653455">"Tambahkan printer"</string> 55 <string name="print_select_printer" msgid="7388760939873368698">"Pilih printer"</string> 56 <string name="print_forget_printer" msgid="5035287497291910766">"Lupakan printer"</string> 58 <item quantity="other"><xliff:g id="COUNT_1">%1$s</xliff:g> printer ditemukan</item> 59 <item quantity="one"><xliff:g id="COUNT_0">%1$s</xliff:g> printer ditemukan</item> 62 <string name="print_searching_for_printers" msgid="6550424555079932867">"Mencari printer"</string> 63 <string name="print_no_printers" msgid="4869403323900054866">"Tidak ditemukan printer"</string> 66 <string name="failed_notification_title_template" msgid="2256217208186530973">"Ada kesalahan printer <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string [all...] |
/frameworks/base/packages/PrintSpooler/res/values-tl/ |
strings.xml | 38 <string name="all_printers" msgid="5018829726861876202">"Lahat ng printer?"</string> 50 <string name="all_printers_label" msgid="3178848870161526399">"Lahat ng printer"</string> 54 <string name="print_add_printer" msgid="1088656468360653455">"Magdagdag ng printer"</string> 55 <string name="print_select_printer" msgid="7388760939873368698">"Piliin ang printer"</string> 56 <string name="print_forget_printer" msgid="5035287497291910766">"Kalimutan ang printer"</string> 58 <item quantity="one"><xliff:g id="COUNT_1">%1$s</xliff:g> nakitang printer</item> 59 <item quantity="other"><xliff:g id="COUNT_1">%1$s</xliff:g> na nakitang printer</item> 62 <string name="print_searching_for_printers" msgid="6550424555079932867">"Naghahanap ng mga printer"</string> 63 <string name="print_no_printers" msgid="4869403323900054866">"Walang mga printer na nakita"</string> 66 <string name="failed_notification_title_template" msgid="2256217208186530973">"Error sa printer <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string [all...] |
/external/llvm/lib/CodeGen/ |
MachineFunctionPrinterPass.cpp | 37 const char *getPassName() const override { return "MachineFunction Printer"; } 55 INITIALIZE_PASS(MachineFunctionPrinterPass, "machineinstr-printer", 56 "Machine Function Printer", false, false) 59 /// Returns a newly-created MachineFunction Printer pass. The
|