Home
last modified time | relevance | path

Searched defs:OneofDescriptor (Results 1 – 24 of 24) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DOneofDescriptor.cs45 public sealed class OneofDescriptor : DescriptorBase class
52 …internal OneofDescriptor(OneofDescriptorProto proto, FileDescriptor file, MessageDescriptor parent… in OneofDescriptor() method in Google.Protobuf.Reflection.OneofDescriptor
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor_containers.h45 class OneofDescriptor; variable
/external/golang-protobuf/internal/impl/
Dmessage_reflect_gen.go112 func (m *messageState) WhichOneof(od protoreflect.OneofDescriptor) protoreflect.FieldDescriptor {
232 func (m *messageReflectWrapper) WhichOneof(od protoreflect.OneofDescriptor) protoreflect.FieldDescr…
Dmessage_reflect_field.go471 func makeOneofInfo(od pref.OneofDescriptor, si structInfo, x exporter) *oneofInfo {
Dcodec_field.go33 func (mi *MessageInfo) initOneofFieldCoders(od pref.OneofDescriptor, si structInfo) {
/external/protobuf/php/src/Google/Protobuf/
DOneofDescriptor.php37 class OneofDescriptor class
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs208 public void OneofDescriptor() in OneofDescriptor() method in Google.Protobuf.Reflection.DescriptorsTest
/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.h52 class OneofDescriptor; variable
/external/protobuf/src/google/protobuf/compiler/java/
Djava_context.h45 class OneofDescriptor; variable
/external/protobuf/php/src/Google/Protobuf/Internal/
DOneofDescriptor.php35 class OneofDescriptor class
/external/golang-protobuf/reflect/protodesc/
Dproto.go173 func ToOneofDescriptorProto(oneof protoreflect.OneofDescriptor) *descriptorpb.OneofDescriptorProto {
/external/protobuf/ruby/ext/google/protobuf_c/
Dprotobuf.h58 typedef struct OneofDescriptor OneofDescriptor; typedef
133 struct OneofDescriptor { struct
134 const upb_oneofdef* oneofdef;
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs318 public void OneofDescriptor() in OneofDescriptor() method in Google.Protobuf.Reflection.DescriptorsTest
/external/golang-protobuf/internal/order/
Dorder_test.go45 pref.OneofDescriptor anonMember
/external/protobuf/src/google/protobuf/
Ddescriptor.h83 class OneofDescriptor; variable
498 friend class OneofDescriptor; variable
837 friend class OneofDescriptor; variable
909 OneofDescriptor() {} in OneofDescriptor() function
1504 friend class OneofDescriptor; variable
/external/protobuf/src/google/protobuf/compiler/js/
Djs_generator.h52 class OneofDescriptor; variable
/external/golang-protobuf/internal/testprotos/irregular/
Dirregular.go85 func (m *message) WhichOneof(pref.OneofDescriptor) pref.FieldDescriptor {
/external/golang-protobuf/reflect/protoreflect/
Dvalue.go125 WhichOneof(OneofDescriptor) FieldDescriptor argument
Dtype.go417 type OneofDescriptor interface { interface
430 type isOneofDescriptor interface{ ProtoType(OneofDescriptor) } argument
/external/golang-protobuf/testing/protocmp/
Dreflect.go124 func (m reflectMessage) WhichOneof(od protoreflect.OneofDescriptor) protoreflect.FieldDescriptor {
/external/golang-protobuf/testing/prototest/
Dmessage.go569 func testOneof(t testing.TB, m pref.Message, od pref.OneofDescriptor) {
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java2597 public static final class OneofDescriptor extends GenericDescriptor { class in Descriptors
2648 private OneofDescriptor( in OneofDescriptor() method in Descriptors.OneofDescriptor
/external/golang-protobuf/compiler/protogen/
Dprotogen.go799 func newOneof(gen *Plugin, f *File, message *Message, desc protoreflect.OneofDescriptor) *Oneof {
/external/protobuf/python/google/protobuf/
Ddescriptor.py713 class OneofDescriptor(DescriptorBase): class