Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestIssues.cs1018 public int Types_ { property in UnitTest.Issues.TestProtos.ReservedNames
1049 if (Types_ != other.Types_) return false; in Equals()
1057 if (Types_ != 0) hash ^= Types_.GetHashCode(); in GetHashCode()
1069 if (Types_ != 0) { in WriteTo()
1071 output.WriteInt32(Types_); in WriteTo()
1082 if (Types_ != 0) { in CalculateSize()
1083 size += 1 + pb::CodedOutputStream.ComputeInt32Size(Types_); in CalculateSize()
1096 if (other.Types_ != 0) { in MergeFrom()
1097 Types_ = other.Types_; in MergeFrom()
1113 Types_ = input.ReadInt32(); in MergeFrom()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DIssuesTest.cs58 var message = new ReservedNames { Types_ = 10, Descriptor_ = 20 }; in ReservedNames()