/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_message.cc | 388 UnderscoresToCamelCase(descriptor_->oneof_decl(i)->name(), true), 389 "oneof_name", descriptor_->oneof_decl(i)->name()); 478 vars["oneof_name"] = descriptor_->oneof_decl(i)->name(); 479 vars["oneof_index"] = SimpleItoa(descriptor_->oneof_decl(i)->index()); 481 ToUpper(descriptor_->oneof_decl(i)->name()); 595 UnderscoresToCamelCase(descriptor_->oneof_decl(i)->name(), true)); 597 for (int j = 0; j < descriptor_->oneof_decl(i)->field_count(); j++) { 602 descriptor_->oneof_decl(i)->field(j)->name(), true), 604 SimpleItoa(descriptor_->oneof_decl(i)->field(j)->number())); 609 ToUpper(descriptor_->oneof_decl(i)->name())) [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_message.cc | 201 const OneofDescriptor* oneof = descriptor_->oneof_decl(i); 409 descriptor_->oneof_decl(i))->name; 411 descriptor_->oneof_decl(i))->capitalized_name; 412 vars["oneof_index"] = SimpleItoa(descriptor_->oneof_decl(i)->index()); 422 for (int j = 0; j < descriptor_->oneof_decl(i)->field_count(); j++) { 423 const FieldDescriptor* field = descriptor_->oneof_decl(i)->field(j); 443 for (int j = 0; j < descriptor_->oneof_decl(i)->field_count(); j++) { 444 const FieldDescriptor* field = descriptor_->oneof_decl(i)->field(j); 819 descriptor_->oneof_decl(i))->name; 821 descriptor_->oneof_decl(i))->capitalized_name [all...] |
java_context.cc | 118 const OneofDescriptor* oneof = message->oneof_decl(i);
|
/external/protobuf/src/google/protobuf/ |
dynamic_message.cc | 650 for (int j = 0; j < type->oneof_decl(i)->field_count(); j++) { 651 const FieldDescriptor* field = type->oneof_decl(i)->field(j); 700 for (int j = 0; j < type->oneof_decl(i)->field_count(); j++) { 701 const FieldDescriptor* field = type->oneof_decl(i)->field(j); 750 for (int j = 0; j < type->oneof_decl(i)->field_count(); j++) { 751 const FieldDescriptor* field = type->oneof_decl(i)->field(j);
|
descriptor.cc | 4125 const OneofDescriptor* oneof_decl = message->field(i)->containing_oneof(); local 4135 OneofDescriptor* oneof_decl = &message->oneof_decls_[i]; local 4151 const OneofDescriptor* oneof_decl = message->field(i)->containing_oneof(); local [all...] |
descriptor.h | 201 const OneofDescriptor* oneof_decl(int index) const; [all...] |
descriptor.pb.h | 673 // repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8; 677 inline const ::google::protobuf::OneofDescriptorProto& oneof_decl(int index) const; 681 oneof_decl() const; 3687 inline const ::google::protobuf::OneofDescriptorProto& DescriptorProto::oneof_decl(int index) const { function in class:google::protobuf::DescriptorProto 3700 DescriptorProto::oneof_decl() const { function in class:google::protobuf::DescriptorProto [all...] |
generated_message_reflection.cc | 568 SwapOneofField(message1, message2, descriptor_->oneof_decl(i)); [all...] |
descriptor_unittest.cc | 701 oneof_ = oneof_message_->oneof_decl(0); 702 oneof2_ = oneof_message_->oneof_decl(1); [all...] |
descriptor.pb.cc | [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 373 // oneof_decl->label() since it will have had to parse the label before it 375 bool ParseOneof(OneofDescriptorProto* oneof_decl,
|
parser_unittest.cc | 461 " oneof_decl {" 494 " oneof_decl {" 497 " oneof_decl {" 2049 const OneofDescriptorProto& oneof_decl = file_.message_type(0).oneof_decl(0); local [all...] |
parser.cc | [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/ |
parser.h | 385 // oneof_decl->label() since it will have had to parse the label before it 387 bool ParseOneof(OneofDescriptorProto* oneof_decl,
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 648 const OneofDescriptor* desc = message_descriptor.oneof_decl(i); 763 const OneofDescriptor* oneof = descriptor.oneof_decl(i); [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
descriptor.h | 251 const OneofDescriptor* oneof_decl(int index) const; [all...] |
descriptor.pb.h | 4483 inline const ::google::protobuf::OneofDescriptorProto& DescriptorProto::oneof_decl(int index) const { function in class:google::protobuf::DescriptorProto 4501 DescriptorProto::oneof_decl() const { function in class:google::protobuf::DescriptorProto [all...] |
/external/protobuf/python/google/protobuf/ |
descriptor_pool.py | 365 for index, desc in enumerate(desc_proto.oneof_decl)]
|