/external/protobuf/src/google/protobuf/ |
D | descriptor.h | 78 class OneofDescriptor; variable 251 const OneofDescriptor* oneof_decl(int index) const; 254 const OneofDescriptor* FindOneofByName(const string& name) const; 399 OneofDescriptor* oneof_decls_; 421 friend class OneofDescriptor; variable 597 const OneofDescriptor* containing_oneof() const; 695 const OneofDescriptor* containing_oneof_; 731 friend class OneofDescriptor; variable 736 class LIBPROTOBUF_EXPORT OneofDescriptor { 792 OneofDescriptor() {} in OneofDescriptor() function [all …]
|
D | generated_message_reflection.h | 223 const OneofDescriptor* oneof_descriptor) const; 224 void ClearOneof(Message* message, const OneofDescriptor* field) const; 264 const OneofDescriptor* oneof_descriptor) const; 474 const OneofDescriptor* oneof_descriptor) const; 477 const OneofDescriptor* oneof_descriptor) const; 506 const OneofDescriptor* oneof_descriptor) const;
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | OneofAccessor.cs | 46 private OneofDescriptor descriptor; 48 …internal OneofAccessor(PropertyInfo caseProperty, MethodInfo clearMethod, OneofDescriptor descript… in OneofAccessor() 67 public OneofDescriptor Descriptor { get { return descriptor; } }
|
D | MessageDescriptor.cs | 77 new OneofDescriptor(oneof, file, this, index, generatedCodeInfo.OneofNames[index])); in MessageDescriptor() 194 public IList<OneofDescriptor> Oneofs { get; } 234 foreach (OneofDescriptor oneof in Oneofs) in CrossLink()
|
D | OneofDescriptor.cs | 43 public sealed class OneofDescriptor : DescriptorBase class 50 …internal OneofDescriptor(OneofDescriptorProto proto, FileDescriptor file, MessageDescriptor parent… in OneofDescriptor() method in Google.Protobuf.Reflection.OneofDescriptor
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | DynamicMessage.java | 36 import com.google.protobuf.Descriptors.OneofDescriptor; 175 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof() 185 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor() 317 private void verifyOneofContainingType(OneofDescriptor oneof) { 462 public boolean hasOneof(OneofDescriptor oneof) { 472 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { 478 public Builder clearOneof(OneofDescriptor oneof) { 521 OneofDescriptor oneofDescriptor = field.getContainingOneof(); 538 OneofDescriptor oneofDescriptor = field.getContainingOneof(); 616 private void verifyOneofContainingType(OneofDescriptor oneof) {
|
D | AbstractMessage.java | 35 import com.google.protobuf.Descriptors.OneofDescriptor; 76 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof() 82 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor() 308 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof() 314 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor() 321 public BuilderType clearOneof(OneofDescriptor oneof) { in clearOneof()
|
D | MessageOrBuilder.java | 96 boolean hasOneof(Descriptors.OneofDescriptor oneof); in hasOneof() 103 Descriptors.OneofDescriptor oneof); in getOneofFieldDescriptor()
|
D | MessageReflection.java | 307 boolean hasOneof(Descriptors.OneofDescriptor oneof); in hasOneof() 313 MergeTarget clearOneof(Descriptors.OneofDescriptor oneof); in clearOneof() 319 Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof); in getOneofFieldDescriptor() 419 public boolean hasOneof(Descriptors.OneofDescriptor oneof) { in hasOneof() 424 public MergeTarget clearOneof(Descriptors.OneofDescriptor oneof) { in clearOneof() 430 public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof) { in getOneofFieldDescriptor() 606 public boolean hasOneof(Descriptors.OneofDescriptor oneof) { in hasOneof() 611 public MergeTarget clearOneof(Descriptors.OneofDescriptor oneof) { in clearOneof() 617 public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof) { in getOneofFieldDescriptor()
|
D | Descriptors.java | 642 public List<OneofDescriptor> getOneofs() { in getOneofs() 768 private final OneofDescriptor[] oneofs; 790 this.oneofs = new OneofDescriptor[0]; in Descriptor() 807 oneofs = new OneofDescriptor[proto.getOneofDeclCount()]; in Descriptor() 809 oneofs[i] = new OneofDescriptor( in Descriptor() 842 OneofDescriptor oneofDescriptor = fields[i].getContainingOneof(); in Descriptor() 1053 public OneofDescriptor getContainingOneof() { return containingOneof; } in getContainingOneof() 1140 private OneofDescriptor containingOneof; 2502 public static final class OneofDescriptor { class in Descriptors 2525 private OneofDescriptor(final OneofDescriptorProto proto, in OneofDescriptor() method in Descriptors.OneofDescriptor
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_context.h | 47 class OneofDescriptor; variable 80 const OneofDescriptor* oneof) const; 104 map<const OneofDescriptor*, OneofGeneratorInfo> oneof_generator_info_map_;
|
D | java_context.cc | 118 const OneofDescriptor* oneof = message->oneof_decl(i); in InitializeFieldGeneratorInfoForMessage() 182 const OneofDescriptor* oneof) const { in GetOneofGeneratorInfo()
|
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
D | objectivec_helpers.h | 103 string OneofEnumName(const OneofDescriptor* descriptor); 104 string OneofName(const OneofDescriptor* descriptor); 105 string OneofNameCapitalized(const OneofDescriptor* descriptor);
|
D | objectivec_oneof.h | 52 explicit OneofGenerator(const OneofDescriptor* descriptor); 69 const OneofDescriptor* descriptor_;
|
D | objectivec_oneof.cc | 44 OneofGenerator::OneofGenerator(const OneofDescriptor* descriptor) in OneofGenerator()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor_containers.h | 45 class OneofDescriptor; variable 82 PyObject* NewOneofFieldsSeq(const OneofDescriptor* descriptor);
|
D | descriptor.h | 60 PyObject* PyOneofDescriptor_FromDescriptor(const OneofDescriptor* descriptor);
|
/external/protobuf/php/ext/google/protobuf/ |
D | protobuf.h | 25 typedef struct OneofDescriptor OneofDescriptor; typedef 90 struct OneofDescriptor { struct
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
D | javanano_helpers.h | 57 string UnderscoresToCamelCase(const OneofDescriptor* oneof); 59 string UnderscoresToCapitalizedCamelCase(const OneofDescriptor* oneof);
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | DescriptorsTest.cs | 208 public void OneofDescriptor() in OneofDescriptor() method in Google.Protobuf.Reflection.DescriptorsTest 210 …OneofDescriptor descriptor = TestAllTypes.Descriptor.FindDescriptor<OneofDescriptor>("oneof_field"… in OneofDescriptor()
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | defs.c | 409 OneofDescriptor* def = ruby_to_OneofDescriptor(obj); in Descriptor_add_oneof() 887 DEFINE_CLASS(OneofDescriptor, "Google::Protobuf::OneofDescriptor"); 893 OneofDescriptor* self = _self; in OneofDescriptor_free() 906 OneofDescriptor* self = ALLOC(OneofDescriptor); in OneofDescriptor_alloc() 932 DEFINE_SELF(OneofDescriptor, self, _self); in OneofDescriptor_name() 944 DEFINE_SELF(OneofDescriptor, self, _self); in OneofDescriptor_name_set() 967 DEFINE_SELF(OneofDescriptor, self, _self); in OneofDescriptor_add_field() 985 DEFINE_SELF(OneofDescriptor, self, _self); in OneofDescriptor_each()
|
D | protobuf.h | 55 typedef struct OneofDescriptor OneofDescriptor; typedef 129 struct OneofDescriptor { struct 226 OneofDescriptor* ruby_to_OneofDescriptor(VALUE value);
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | RubyMessage.java | 74 this.oneofCases = new HashMap<Descriptors.OneofDescriptor, Descriptors.FieldDescriptor>(); in initialize() 100 Descriptors.OneofDescriptor oneof = fieldDescriptor.getContainingOneof(); in initialize() 593 Descriptors.OneofDescriptor oneofDescriptor = fieldDescriptor.getContainingOneof(); in getField() 662 Descriptors.OneofDescriptor oneofDescriptor = fieldDescriptor.getContainingOneof(); in setField() 748 private Descriptors.FieldDescriptor getOneofCase(Descriptors.OneofDescriptor oneof) { in getOneofCase() 762 private Map<Descriptors.OneofDescriptor, Descriptors.FieldDescriptor> oneofCases;
|
/external/protobuf/src/google/protobuf/compiler/js/ |
D | js_generator.h | 45 class OneofDescriptor; variable 219 const OneofDescriptor* oneof) const;
|
/external/perfetto/tools/ftrace_proto_gen/ |
D | ftrace_descriptor_gen.cc | 26 const google::protobuf::OneofDescriptor* one_of_event = in GenerateFtraceDescriptors()
|