HomeSort by relevance Sort by last modified time
    Searched refs:Printer (Results 176 - 200 of 294) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.cc 42 #include <google/protobuf/io/printer.h>
91 void FileGenerator::GenerateHeader(io::Printer* printer) {
95 printer->Print(
108 printer->Print(
114 printer->Print(
131 printer->Print(
135 printer->Print(
138 printer->Print(
142 printer->Print
    [all...]
cpp_field.cc 43 #include <google/protobuf/io/printer.h>
74 GenerateMergeFromCodedStreamWithPacking(io::Printer* printer) const {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.cc 42 #include <google/protobuf/io/printer.h>
91 void FileGenerator::GenerateHeader(io::Printer* printer) {
95 printer->Print(
107 printer->Print(
113 printer->Print(
130 printer->Print(
136 printer->Print(
141 printer->Print(
147 printer->Print
    [all...]
cpp_field.cc 43 #include <google/protobuf/io/printer.h>
72 GenerateMergeFromCodedStreamWithPacking(io::Printer* printer) const {
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 1 //===- unittests/AST/DeclPrinterTest.cpp --- Declaration printer tests ----===//
74 PrintMatch Printer;
76 Finder.addMatcher(NodeMatch, &Printer);
84 if (Printer.getNumFoundDecls() == 0)
88 if (Printer.getNumFoundDecls() > 1)
91 "(found " << Printer.getNumFoundDecls() << ")";
93 if (Printer.getPrinted() != ExpectedPrinted)
96 "got \"" << Printer.getPrinted().str() << "\"";
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 58 private static final Printer DEFAULT_PRINTER = new Printer();
59 private static final Printer SINGLE_LINE_PRINTER =
60 (new Printer()).setSingleLineMode(true);
61 private static final Printer UNICODE_PRINTER =
62 (new Printer()).setEscapeNonAscii(false);
248 private static final class Printer {
255 private Printer() {}
258 private Printer setSingleLineMode(boolean singleLineMode) {
264 private Printer setEscapeNonAscii(boolean escapeNonAscii)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 473 new Printer(this, out).print();
476 static class Printer extends Walker {
479 public Printer(StackMap map, java.io.PrintWriter out) {
StackMapTable.java 681 Printer.print(this, w);
690 Printer.print(this, new java.io.PrintWriter(ps, true));
693 static class Printer extends Walker {
702 new Printer(smt.get(), writer).parse();
709 Printer(byte[] data, PrintWriter pw) {
ClassFilePrinter.java 119 StackMapTable.Printer.print((StackMapTable)ai, out);
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.cc 42 #include <google/protobuf/io/printer.h>
133 void FileGenerator::Generate(io::Printer* printer) {
136 printer->Print(
142 printer->Print(
147 printer->Print(
151 printer->Indent();
155 printer->Print(
160 printer->Indent();
163 ExtensionGenerator(file_->extension(i)).GenerateRegistrationCode(printer);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_field.cc 50 void FieldGenerator::GenerateParsingCodeFromPacked(io::Printer* printer) const {
java_file.cc 42 #include <google/protobuf/io/printer.h>
181 void FileGenerator::Generate(io::Printer* printer) {
184 printer->Print(
190 printer->Print(
195 printer->Print(
199 printer->Indent();
203 printer->Print(
208 printer->Indent();
211 ExtensionGenerator(file_->extension(i)).GenerateRegistrationCode(printer);
    [all...]
java_enum.cc 41 #include <google/protobuf/io/printer.h>
70 void EnumGenerator::Generate(io::Printer* printer) {
71 WriteEnumDocComment(printer, descriptor_);
73 printer->Print(
78 printer->Print(
83 printer->Indent();
90 WriteEnumValueDocComment(printer, canonical_values_[i]);
91 printer->Print(vars,
95 printer->Print
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_extension.cc 35 #include <google/protobuf/io/printer.h>
133 void ExtensionGenerator::Generate(io::Printer* printer) const {
134 printer->Print("\n");
135 PrintFieldComment(printer, descriptor_);
136 printer->Print(variables_,
javanano_helpers.h 42 #include <google/protobuf/io/printer.h>
116 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field);
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...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
TraceEvent.java 11 import android.util.Printer;
24 private static class BasicLooperMonitor implements Printer {
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 112 AsmPrinter &Printer, bool isDarwin) {
113 MCContext &Ctx = Printer.OutContext;
  /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_generator.cc 39 #include <google/protobuf/io/printer.h>
185 io::Printer printer(output.get(), '$');
186 file_generator.Generate(&printer);
198 io::Printer srclist_printer(srclist_raw_output.get(), '$');
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 24 import android.util.Printer;
125 Printer pr = new PrintStreamPrinter(System.out);
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 38 import android.util.Printer;
266 public void dump(Printer pw, String prefix) {
  /frameworks/base/core/java/android/content/pm/
ActivityInfo.java 23 import android.util.Printer;
683 public void dump(Printer pw, String prefix) {
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/util/
HumanReadables.java 32 import android.util.Printer;
155 Printer p = new StringBuilderPrinter(sb);
  /external/llvm/include/llvm/MC/
MCInst.h 188 const MCInstPrinter *Printer = nullptr,

Completed in 317 milliseconds

1 2 3 4 5 6 78 91011>>