Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestIssues.cs912 public int Types_ { property in UnitTest.Issues.TestProtos.ReservedNames
940 if (Types_ != other.Types_) return false; in Equals()
947 if (Types_ != 0) hash ^= Types_.GetHashCode(); in GetHashCode()
957 if (Types_ != 0) { in WriteTo()
959 output.WriteInt32(Types_); in WriteTo()
969 if (Types_ != 0) { in CalculateSize()
970 size += 1 + pb::CodedOutputStream.ComputeInt32Size(Types_); in CalculateSize()
982 if (other.Types_ != 0) { in MergeFrom()
983 Types_ = other.Types_; in MergeFrom()
998 Types_ = input.ReadInt32(); in MergeFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DIssuesTest.cs58 var message = new ReservedNames { Types_ = 10, Descriptor_ = 20 }; in ReservedNames()