Searched defs:FieldGenerator (Results 1 - 6 of 6) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.h62 class FieldGenerator { class in namespace:google::protobuf::compiler::cpp
64 FieldGenerator() {} function in class:google::protobuf::compiler::cpp::FieldGenerator
65 virtual ~FieldGenerator();
141 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
150 const FieldGenerator& get(const FieldDescriptor* field) const;
154 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
156 static FieldGenerator* MakeGenerator(const FieldDescriptor* field);
H A Dcpp_field.cc69 FieldGenerator::~FieldGenerator() {}
71 void FieldGenerator::
74 // - This FieldGenerator should support packing, but this method should be
76 // - This FieldGenerator doesn't support packing, and this method should
86 new scoped_ptr<FieldGenerator>[descriptor->field_count()]) {
93 FieldGenerator* FieldGeneratorMap::MakeGenerator(const FieldDescriptor* field) {
129 const FieldGenerator& FieldGeneratorMap::get(
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_field.cc47 FieldGenerator::~FieldGenerator() {}
49 void FieldGenerator::GenerateParsingCodeFromPacked(io::Printer* printer) const {
51 // - This FieldGenerator should support packing, but this method should be
53 // - This FieldGenerator doesn't support packing, and this method should
62 new scoped_ptr<FieldGenerator>[descriptor->field_count()]),
64 new scoped_ptr<FieldGenerator>[descriptor->extension_count()]) {
75 FieldGenerator* FieldGeneratorMap::MakeGenerator(const FieldDescriptor* field) {
99 const FieldGenerator& FieldGeneratorMap::get(
105 const FieldGenerator
[all...]
H A Djava_field.h53 class FieldGenerator { class in namespace:google::protobuf::compiler::java
55 FieldGenerator() {} function in class:google::protobuf::compiler::java::FieldGenerator
56 virtual ~FieldGenerator();
71 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
80 const FieldGenerator& get(const FieldDescriptor* field) const;
81 const FieldGenerator& get_extension(int index) const;
85 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
86 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
88 static FieldGenerator* MakeGenerator(const FieldDescriptor* field);
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_field.cc47 FieldGenerator::~FieldGenerator() {}
52 new scoped_ptr<FieldGenerator>[descriptor->field_count()]),
54 new scoped_ptr<FieldGenerator>[descriptor->extension_count()]) {
65 FieldGenerator* FieldGeneratorMap::MakeGenerator(const FieldDescriptor* field, const Params &params) {
89 const FieldGenerator& FieldGeneratorMap::get(
95 const FieldGenerator& FieldGeneratorMap::get_extension(int index) const {
H A Djavamicro_field.h54 class FieldGenerator { class in namespace:google::protobuf::compiler::javamicro
56 //FieldGenerator() {}
57 FieldGenerator(const Params& params) : params_(params) {} function in class:google::protobuf::compiler::javamicro::FieldGenerator
58 virtual ~FieldGenerator();
71 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
80 const FieldGenerator& get(const FieldDescriptor* field) const;
81 const FieldGenerator& get_extension(int index) const;
85 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
86 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
88 static FieldGenerator* MakeGenerato
[all...]

Completed in 51 milliseconds