HomeSort by relevance Sort by last modified time
    Searched defs:FieldGenerator (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 71 FieldGenerator::~FieldGenerator() {}
73 void FieldGenerator::
76 // - This FieldGenerator should support packing, but this method should be
78 // - This FieldGenerator doesn't support packing, and this method should
88 field_generators_(new scoped_ptr<FieldGenerator>[descriptor->field_count()]) {
95 FieldGenerator* FieldGeneratorMap::MakeGenerator(const FieldDescriptor* field,
132 const FieldGenerator& FieldGeneratorMap::get(
cpp_field.h 64 class FieldGenerator {
66 FieldGenerator() {}
67 virtual ~FieldGenerator();
150 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
159 const FieldGenerator& get(const FieldDescriptor* field) const;
163 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
165 static FieldGenerator* MakeGenerator(const FieldDescriptor* field,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_field.cc 48 FieldGenerator::~FieldGenerator() {}
50 void FieldGenerator::GenerateParsingCodeFromPacked(io::Printer* printer) const {
52 // - This FieldGenerator should support packing, but this method should be
54 // - This FieldGenerator doesn't support packing, and this method should
63 new scoped_ptr<FieldGenerator>[descriptor->field_count()]),
65 new scoped_ptr<FieldGenerator>[descriptor->extension_count()]) {
72 FieldGenerator* generator = MakeGenerator(descriptor->field(i),
79 FieldGenerator* generator = MakeGenerator(descriptor->extension(i),
87 FieldGenerator* FieldGeneratorMap::MakeGenerator
    [all...]
java_field.h 53 class FieldGenerator {
55 FieldGenerator() {}
56 virtual ~FieldGenerator();
81 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
90 const FieldGenerator& get(const FieldDescriptor* field) const;
91 const FieldGenerator& get_extension(int index) const;
95 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
96 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
98 static FieldGenerator* MakeGenerator(const FieldDescriptor* field,
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 69 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(
cpp_field.h 62 class FieldGenerator {
64 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);
  /external/protobuf/src/google/protobuf/compiler/java/
java_field.cc 47 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& FieldGeneratorMap::get_extension(int index) const
    [all...]
java_field.h 53 class FieldGenerator {
55 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/
javamicro_field.cc 47 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 {
javamicro_field.h 54 class FieldGenerator {
56 //FieldGenerator() {}
57 FieldGenerator(const Params& params) : params_(params) {}
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* MakeGenerator(const FieldDescriptor* field, const Params &params)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_field.cc 47 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 {
javanano_field.h 54 class FieldGenerator {
56 //FieldGenerator() {}
57 FieldGenerator(const Params& params) : params_(params) {}
58 virtual ~FieldGenerator();
70 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(FieldGenerator);
79 const FieldGenerator& get(const FieldDescriptor* field) const;
80 const FieldGenerator& get_extension(int index) const;
84 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
85 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
87 static FieldGenerator* MakeGenerator(const FieldDescriptor* field, const Params &params)
    [all...]

Completed in 423 milliseconds