HomeSort by relevance Sort by last modified time
    Searched refs:Printer (Results 76 - 100 of 184) sorted by null

1 2 34 5 6 7 8

  /frameworks/base/core/java/android/content/pm/
ComponentInfo.java 21 import android.util.Printer;
120 protected void dumpFront(Printer pw, String prefix) {
129 protected void dumpBack(Printer pw, String prefix) {
PackageItemInfo.java 25 import android.util.Printer;
222 protected void dumpFront(Printer pw, String prefix) {
234 protected void dumpBack(Printer pw, String prefix) {
  /external/protobuf/src/google/protobuf/compiler/java/
java_generator.cc 38 #include <google/protobuf/io/printer.h>
98 io::Printer printer(output.get(), '$');
99 file_generator.Generate(&printer);
110 io::Printer srclist_printer(srclist_raw_output.get(), '$');
java_message.cc 42 #include <google/protobuf/io/printer.h>
57 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
61 printer->Print("// $def$\n",
156 void MessageGenerator::GenerateStaticVariables(io::Printer* printer) {
182 printer->Print(vars,
187 printer->Print(vars,
197 .GenerateStaticVariables(printer);
202 io::Printer* printer)
    [all...]
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...]
java_field.cc 49 void FieldGenerator::GenerateParsingCodeFromPacked(io::Printer* printer) const {
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_primitive_field.cc 41 #include <google/protobuf/io/printer.h>
275 GenerateMembers(io::Printer* printer) const {
278 printer->Print(variables_,
281 printer->Print(variables_,
284 printer->Print(variables_,
288 printer->Print(variables_,
294 GenerateParsingCode(io::Printer* printer) const {
295 printer->Print(variables_
    [all...]
javanano_generator.cc 39 #include <google/protobuf/io/printer.h>
146 io::Printer printer(output.get(), '$');
147 file_generator.Generate(&printer);
158 io::Printer srclist_printer(srclist_raw_output.get(), '$');
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 220 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
221 if (Printer == 0)
227 PM.add(Printer);
286 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
287 if (Printer == 0)
293 PM.add(Printer);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 45 #include <google/protobuf/io/printer.h>
60 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
64 printer->Print("// $def$\n",
182 GenerateForwardDeclaration(io::Printer* printer) {
183 printer->Print("class $classname$;\n",
187 nested_generators_[i]->GenerateForwardDeclaration(printer);
192 GenerateEnumDefinitions(io::Printer* printer) {
    [all...]
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_plugin_unittest.cc 40 #include <google/protobuf/io/printer.h>
77 io::Printer printer(output.get(), '$');
78 printer.Print("// inserted $name$\n", "name", insertion_point);
  /external/protobuf/src/google/protobuf/
text_format.cc 66 TextFormat::Printer printer; local
67 printer.SetSingleLineMode(true);
69 printer.PrintToString(*this, &debug_string);
82 TextFormat::Printer printer; local
83 printer.SetUseUtf8StringEscaping(true);
85 printer.PrintToString(*this, &debug_string);
646 // from the Printer found in //google/protobuf/io/printer.
    [all...]
text_format.h 87 class LIBPROTOBUF_EXPORT Printer {
89 Printer();
90 ~Printer();
  /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 {
  /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 {
  /external/clang/test/SemaCXX/
format-strings.cpp 105 class Printer {
114 void use_class(Printer<const char *> &p) {
  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 28 HexagonAsmPrinter& Printer) {
29 MCContext &MC = Printer.OutContext;
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.h 52 namespace io { class Printer; }
145 mutable io::Printer* printer_; // Set in Generate(). Under mutex_.
python_plugin_unittest.cc 40 #include <google/protobuf/io/printer.h>
72 io::Printer printer(output.get(), '$');
73 printer.Print("// inserted $name$\n", "name", insertion_point);
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 30 import android.util.Printer;
389 * Dump a CrashInfo instance to a Printer.
391 public void dump(Printer pw, String prefix) {
446 * Dump an AnrInfo instance to a Printer.
448 public void dump(Printer pw, String prefix) {
507 * Dump a BatteryInfo instance to a Printer.
509 public void dump(Printer pw, String prefix) {
554 * Dump a BatteryInfo instance to a Printer.
556 public void dump(Printer pw, String prefix) {
578 * Dump the report to a Printer
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
LooperTest.java 25 import android.util.Printer;
39 StringBuilderPrinter printer = new StringBuilderPrinter(new StringBuilder()); local
41 Looper.myLooper().dump(printer, prefix);
197 class MockPrinter implements Printer {
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 24 import android.util.Printer;
327 public void dump(Printer pw, String prefix) {
  /frameworks/base/services/java/com/android/server/
CountryDetectorService.java 36 import android.util.Printer;
219 final Printer p = new PrintWriterPrinter(fout);
  /frameworks/base/services/java/com/android/server/am/
ReceiverList.java 26 import android.util.Printer;
82 Printer pr = new PrintWriterPrinter(pw);

Completed in 505 milliseconds

1 2 34 5 6 7 8