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

/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.h67 class FieldGenerator { class in namespace:google::protobuf::compiler::cpp
69 FieldGenerator() {} function in class:google::protobuf::compiler::cpp::FieldGenerator
70 virtual ~FieldGenerator();
158 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
167 const FieldGenerator& get(const FieldDescriptor* field) const;
171 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
173 static FieldGenerator* MakeGenerator(const FieldDescriptor* field,
H A Dcpp_field.cc79 FieldGenerator::~FieldGenerator() {}
81 void FieldGenerator::
84 // - This FieldGenerator should support packing, but this method should be
86 // - This FieldGenerator doesn't support packing, and this method should
97 new scoped_ptr<FieldGenerator>[descriptor->field_count()]) {
104 FieldGenerator* FieldGeneratorMap::MakeGenerator(const FieldDescriptor* field,
156 const FieldGenerator& FieldGeneratorMap::get(
/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...]
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_field.h54 class FieldGenerator { class in namespace:google::protobuf::compiler::javanano
56 FieldGenerator(const Params& params) : params_(params) {} function in class:google::protobuf::compiler::javanano::FieldGenerator
57 virtual ~FieldGenerator();
90 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
99 const FieldGenerator& get(const FieldDescriptor* field) const;
105 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
109 static FieldGenerator* MakeGenerator(const FieldDescriptor* field,
H A Djavanano_field.cc47 FieldGenerator::~FieldGenerator() {}
49 bool FieldGenerator::SavedDefaultNeeded() const {
56 void FieldGenerator::GenerateInitSavedDefaultCode(io::Printer* printer) const {
62 void FieldGenerator::GenerateMergingCodeFromPacked(io::Printer* printer) const {
64 // - This FieldGenerator should support packing, but this method should be
66 // - This FieldGenerator doesn't support packing, and this method should
78 new scoped_ptr<FieldGenerator>[descriptor->field_count()]) {
84 FieldGenerator* field_generator = MakeGenerator(
94 FieldGenerator* FieldGeneratorMa
[all...]

Completed in 129 milliseconds