Searched refs:printer (Results 126 - 150 of 338) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/compiler/js/
H A Djs_generator.cc48 #include <google/protobuf/io/printer.h>
1373 io::Printer* printer) const {
1374 printer->Print("/**\n"
1384 io::Printer* printer,
1388 FindProvidesForMessage(options, printer, file->message_type(i), provided);
1391 FindProvidesForEnum(options, printer, file->enum_type(i), provided);
1396 io::Printer* printer,
1400 FindProvidesForFile(options, printer, files[i], provided);
1403 printer->Print("\n");
1408 io::Printer* printer,
1383 FindProvidesForFile(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file, std::set<string>* provided) const argument
1395 FindProvides(const GeneratorOptions& options, io::Printer* printer, const vector<const FileDescriptor*>& files, std::set<string>* provided) const argument
1406 FindProvidesForMessage( const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc, std::set<string>* provided) const argument
1424 FindProvidesForEnum(const GeneratorOptions& options, io::Printer* printer, const EnumDescriptor* enumdesc, std::set<string>* provided) const argument
1432 FindProvidesForFields( const GeneratorOptions& options, io::Printer* printer, const vector<const FieldDescriptor*>& fields, std::set<string>* provided) const argument
1450 GenerateProvides(const GeneratorOptions& options, io::Printer* printer, std::set<string>* provided) const argument
1460 GenerateRequiresForMessage(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc, std::set<string>* provided) const argument
1475 GenerateRequiresForLibrary( const GeneratorOptions& options, io::Printer* printer, const vector<const FileDescriptor*>& files, std::set<string>* provided) const argument
1515 GenerateRequiresForExtensions( const GeneratorOptions& options, io::Printer* printer, const vector<const FieldDescriptor*>& fields, std::set<string>* provided) const argument
1534 GenerateRequiresImpl(const GeneratorOptions& options, io::Printer* printer, std::set<string>* required, std::set<string>* forwards, std::set<string>* provided, bool require_jspb, bool require_extension) const argument
1648 GenerateClassesAndEnums(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file) const argument
1659 GenerateClass(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
1700 GenerateClassConstructor(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
1739 GenerateClassFieldInfo(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
1785 GenerateClassXid(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
1795 GenerateOneofCaseDefinition( const GeneratorOptions& options, io::Printer* printer, const OneofDescriptor* oneof) const argument
1838 GenerateClassToObject(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
1922 GenerateClassFieldToObject(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
1981 GenerateClassFromObject(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2007 GenerateClassFieldFromObject( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
2043 GenerateClassClone(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2058 GenerateClassRegistration(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2071 GenerateClassFields(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2081 GenerateBytesWrapper(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field, BytesMode bytes_mode) argument
2115 GenerateClassField(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
2355 GenerateClassExtensionFieldInfo(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2383 GenerateClassDeserializeBinary(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2447 GenerateClassDeserializeBinaryField( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
2494 GenerateClassSerializeBinary(const GeneratorOptions& options, io::Printer* printer, const Descriptor* desc) const argument
2548 GenerateClassSerializeBinaryField( const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
2619 GenerateEnum(const GeneratorOptions& options, io::Printer* printer, const EnumDescriptor* enumdesc) const argument
2643 GenerateExtension(const GeneratorOptions& options, io::Printer* printer, const FieldDescriptor* field) const argument
2784 GenerateFilesInDepOrder( const GeneratorOptions& options, io::Printer* printer, const vector<const FileDescriptor*>& files) const argument
2798 GenerateFileAndDeps( const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* root, std::set<const FileDescriptor*>* all_files, std::set<const FileDescriptor*>* generated) const argument
2824 GenerateFile(const GeneratorOptions& options, io::Printer* printer, const FileDescriptor* file) const argument
[all...]
/external/mockito/src/test/java/org/mockito/internal/matchers/
H A DMatchersPrinterTest.java20 private final MatchersPrinter printer = new MatchersPrinter(); field in class:MatchersPrinterTest
24 String line = printer.getArgumentsLine((List) Arrays.asList(new Equals(1), new Equals(2)), new PrintSettings());
30 String line = printer.getArgumentsBlock((List) Arrays.asList(new Equals(1), new Equals(2)), new PrintSettings());
37 String line = printer.getArgumentsLine((List) Arrays.asList(new Equals(1L), new Equals(2)), PrintSettings.verboseMatchers(1));
45 String line = printer.getArgumentsLine((List) Arrays.asList(new Equals(1L), new Equals("x")), PrintSettings.verboseMatchers(1));
53 String line = printer.getArgumentsBlock((List) Arrays.asList(new Equals(1L), new Equals(2)), PrintSettings.verboseMatchers(0, 1));
61 String line = printer.getArgumentsLine((List) Arrays.asList(new Equals(1L), NotNull.NOT_NULL), PrintSettings.verboseMatchers(0));
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_extension.cc37 #include <google/protobuf/io/printer.h>
61 void ExtensionGenerator::GenerateMembersHeader(io::Printer* printer) { argument
70 printer->Print(vars,
76 io::Printer* printer) {
115 printer->Print(vars,
128 void ExtensionGenerator::GenerateRegistrationSource(io::Printer* printer) { argument
129 printer->Print(
75 GenerateStaticVariablesInitialization( io::Printer* printer) argument
H A Dobjectivec_generator.cc35 #include <google/protobuf/io/printer.h>
83 io::Printer printer(output.get(), '$');
84 file_generator.GenerateHeader(&printer);
91 io::Printer printer(output.get(), '$');
92 file_generator.GenerateSource(&printer);
H A Dobjectivec_enum.h42 class Printer; // printer.h
55 void GenerateHeader(io::Printer* printer);
56 void GenerateSource(io::Printer* printer);
H A Dobjectivec_enum_field.cc37 #include <google/protobuf/io/printer.h>
79 io::Printer* printer) const {
84 printer->Print(
97 io::Printer* printer) const {
100 printer->Print(
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_extension.cc39 #include <google/protobuf/io/printer.h>
94 void ExtensionGenerator::GenerateDeclaration(io::Printer* printer) { argument
116 printer->Print(vars,
125 void ExtensionGenerator::GenerateDefinition(io::Printer* printer) { argument
148 printer->Print(vars,
157 printer->Print(vars,
163 printer->Print(vars,
169 void ExtensionGenerator::GenerateRegistration(io::Printer* printer) { argument
181 printer->Print(vars,
185 printer
[all...]
H A Dcpp_extension.h46 class Printer; // printer.h
65 void GenerateDeclaration(io::Printer* printer);
68 void GenerateDefinition(io::Printer* printer);
71 void GenerateRegistration(io::Printer* printer);
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_field.h46 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;
64 virtual void GenerateSerializedSizeCode(io::Printer* printer) const = 0;
H A Djavamicro_enum.cc41 #include <google/protobuf/io/printer.h>
70 void EnumGenerator::Generate(io::Printer* printer) { argument
71 printer->Print("// enum $classname$\n", "classname", descriptor_->name());
76 printer->Print(vars,
86 printer->Print(vars,
90 printer->Print("\n");
H A Djavamicro_file.cc42 #include <google/protobuf/io/printer.h>
153 void FileGenerator::Generate(io::Printer* printer) { argument
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);
190 printer
[all...]
/external/proguard/src/proguard/
H A DSeedPrinter.java83 SimpleClassPrinter printer = new SimpleClassPrinter(false, ps);
87 new KeptClassFilter(printer),
88 new AllMemberVisitor(new KeptMemberFilter(printer))
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension_lite.h54 virtual void Generate(io::Printer* printer);
57 virtual int GenerateNonNestedInitializationCode(io::Printer* printer);
60 virtual int GenerateRegistrationCode(io::Printer* printer);
H A Djava_extension.cc41 #include <google/protobuf/io/printer.h>
112 void ImmutableExtensionGenerator::Generate(io::Printer* printer) { argument
117 printer->Print(vars,
120 WriteFieldDocComment(printer, descriptor_);
123 printer->Print(
134 printer->Print(
149 io::Printer* printer) {
153 printer->Print(
163 io::Printer* printer) {
164 printer
148 GenerateNonNestedInitializationCode( io::Printer* printer) argument
162 GenerateRegistrationCode( io::Printer* printer) argument
[all...]
H A Djava_message_builder_lite.h51 class Printer; // printer.h
65 virtual void Generate(io::Printer* printer);
68 void GenerateCommonBuilderMethods(io::Printer* printer);
/external/llvm/lib/Target/BPF/
H A DBPFMCInstLower.h33 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer) argument
34 : Ctx(ctx), Printer(printer) {}
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.h40 WebAssemblyMCInstLower(MCContext &ctx, AsmPrinter &printer) argument
41 : Ctx(ctx), Printer(printer) {}
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_file.cc43 #include <google/protobuf/io/printer.h>
162 void FileGenerator::Generate(io::Printer* printer) { argument
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);
206 MessageGenerator(file_->message_type(i), params_).GenerateStaticVariables(printer);
[all...]
H A Djavanano_field.cc57 void FieldGenerator::GenerateInitSavedDefaultCode(io::Printer* printer) const {
60 // and generate the appropriate init code to the printer.
63 void FieldGenerator::GenerateMergingCodeFromPacked(io::Printer* printer) const {
173 io::Printer* printer) {
175 printer->Print(variables,
183 printer->Print(variables,
194 io::Printer* printer) {
196 printer->Print(variables,
200 printer->Print(variables,
171 GenerateOneofFieldEquals(const FieldDescriptor* descriptor, const map<string, string>& variables, io::Printer* printer) argument
192 GenerateOneofFieldHashCode(const FieldDescriptor* descriptor, const map<string, string>& variables, io::Printer* printer) argument
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
H A DInstrSupportTest.java27 private Printer printer; field in class:InstrSupportTest
32 printer = new Textifier();
33 trace = new TraceMethodVisitor(printer);
130 assertEquals(1, printer.getText().size());
131 assertEquals(expected, printer.getText().get(0).toString().trim());
/external/vixl/tools/
H A Dclang_format.py40 import printer namespace
75 printer.PrintOverwritableLine('Processing %s' % filename,
76 type = printer.LINE_TYPE_LINTER)
108 printer.Print('Incorrectly formatted file: ' + filename + '\n' + \
133 printer.COLOUR_RED + \
136 printer.NO_COLOUR)
155 printer.PrintOverwritableLine(
157 type = printer.LINE_TYPE_LINTER)
158 printer.EnsureNewLine()
/external/bison/src/
H A Dsymtab.h83 /** 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:__anon611
216 /** Set the \c printer associate
[all...]
/external/dng_sdk/source/
H A Ddng_camera_profile.cpp347 static void FingerprintMatrix (dng_md5_printer_stream &printer, argument
355 tag.Put (printer);
361 static void FingerprintHueSatMap (dng_md5_printer_stream &printer, argument
374 printer.Put_uint32 (hues);
375 printer.Put_uint32 (sats);
376 printer.Put_uint32 (vals);
387 printer.Put_real32 (modify.fHueShift);
388 printer.Put_real32 (modify.fSatScale);
389 printer.Put_real32 (modify.fValScale);
402 dng_md5_printer_stream printer; local
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.h32 MSP430MCInstLower(MCContext &ctx, AsmPrinter &printer) argument
33 : Ctx(ctx), Printer(printer) {}
/external/mesa3d/src/mapi/shared-glapi/
H A DSConscript8 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 514 milliseconds

1234567891011>>