Home
last modified time | relevance | path

Searched refs:syntheticOneofCount (Results 1 – 2 of 2) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DMessageDescriptor.cs83 int syntheticOneofCount = 0; in MessageDescriptor()
88 syntheticOneofCount++; in MessageDescriptor()
90 else if (syntheticOneofCount != 0) in MessageDescriptor()
95 RealOneofCount = Oneofs.Count - syntheticOneofCount; in MessageDescriptor()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java909 int syntheticOneofCount = 0; in Descriptor() local
912 syntheticOneofCount++; in Descriptor()
914 if (syntheticOneofCount > 0) { in Descriptor()
919 this.realOneofCount = this.oneofs.length - syntheticOneofCount; in Descriptor()