Home
last modified time | relevance | path

Searched refs:ContainingType (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs52 public MessageDescriptor ContainingType { get; } property in Google.Protobuf.Reflection.FieldDescriptor
81 ContainingType = parent; in FieldDescriptor()
215 if (other.ContainingType != ContainingType) in CompareTo()
318 …if (ContainingType != null && ContainingType.Proto.Options != null && ContainingType.Proto.Options… in CrossLink()
333 var property = ContainingType.ClrType.GetProperty(propertyName); in CreateAccessor()
DOneofDescriptor.cs71 public MessageDescriptor ContainingType property in Google.Protobuf.Reflection.OneofDescriptor
96 foreach (var field in ContainingType.Fields.InDeclarationOrder()) in CrossLink()
DMessageDescriptor.cs73 ContainingType = parent; in MessageDescriptor()
178 public MessageDescriptor ContainingType { get; } property in Google.Protobuf.Reflection.MessageDescriptor
DOneofAccessor.cs85 return descriptor.ContainingType.FindFieldByNumber(fieldNumber); in GetCaseFieldDescriptor()
DEnumDescriptor.cs83 public MessageDescriptor ContainingType property in Google.Protobuf.Reflection.EnumDescriptor
DDescriptorPool.cs230 DescriptorIntPair key = new DescriptorIntPair(field.ContainingType, field.FieldNumber); in AddFieldByNumber()
236 field.ContainingType.FullName + in AddFieldByNumber()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DExtensionRegistryLite.java136 public <ContainingType extends MessageLite>
137 GeneratedMessageLite.GeneratedExtension<ContainingType, ?>
139 final ContainingType containingTypeDefaultInstance, in findLiteExtensionByNumber()
141 return (GeneratedMessageLite.GeneratedExtension<ContainingType, ?>) in findLiteExtensionByNumber()
DExtension.java38 public abstract class Extension<ContainingType extends MessageLite, Type>
39 extends ExtensionLite<ContainingType, Type> {
DExtensionLite.java39 public abstract class ExtensionLite<ContainingType extends MessageLite, Type> {
DGeneratedMessageLite.java874 public static <ContainingType extends MessageLite, Type>
875 GeneratedExtension<ContainingType, Type>
877 final ContainingType containingTypeDefaultInstance, in newSingularGeneratedExtension()
884 return new GeneratedExtension<ContainingType, Type>( in newSingularGeneratedExtension()
895 public static <ContainingType extends MessageLite, Type>
896 GeneratedExtension<ContainingType, Type>
898 final ContainingType containingTypeDefaultInstance, in newRepeatedGeneratedExtension()
907 return new GeneratedExtension<ContainingType, Type>( in newRepeatedGeneratedExtension()
1023 ContainingType extends MessageLite, Type>
1024 extends ExtensionLite<ContainingType, Type> {
[all …]
DGeneratedMessage.java1612 public static <ContainingType extends Message, Type>
1613 GeneratedExtension<ContainingType, Type>
1621 return new GeneratedExtension<ContainingType, Type>(
1634 public static <ContainingType extends Message, Type>
1635 GeneratedExtension<ContainingType, Type>
1641 return new GeneratedExtension<ContainingType, Type>(
1673 public static <ContainingType extends Message, Type>
1674 GeneratedExtension<ContainingType, Type>
1681 return new GeneratedExtension<ContainingType, Type>(
1700 public static <ContainingType extends Message, Type>
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs99 Assert.IsNull(messageType.ContainingType); in MessageDescriptor()
107 Assert.AreEqual(messageType, nestedType.ContainingType); in MessageDescriptor()
149 Assert.AreEqual(messageType, primitiveField.ContainingType); in FieldDescriptor()
185 Assert.Null(enumType.ContainingType); in EnumDescriptor()
192 Assert.AreEqual(TestAllTypes.Descriptor, nestedType.ContainingType); in EnumDescriptor()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor_unittest.cc707 TEST_F(DescriptorTest, ContainingType) { in TEST_F() argument
1262 TEST_F(EnumDescriptorTest, ContainingType) { in TEST_F() argument