Home
last modified time | relevance | path

Searched refs:SingleSfixed32 (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs66 SingleSfixed32 = -123, in CreateFullTestAllTypes()
DGeneratedMessageTest.cs78 Assert.AreEqual(0, message.SingleSfixed32); in DefaultValues()
157 SingleSfixed32 = -123, in RoundTrip_SingleValues()
453 SingleSfixed32 = -123, in CloneSingleNonMessageValues()
DJsonFormatterTest.cs87 SingleSfixed32 = -123, in AllSingleFields()
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestProto3.cs409 public int SingleSfixed32 { property in Google.Protobuf.TestProtos.TestAllTypes
831 if (SingleSfixed32 != other.SingleSfixed32) return false; in Equals()
885 if (SingleSfixed32 != 0) hash ^= SingleSfixed32.GetHashCode(); in GetHashCode()
966 if (SingleSfixed32 != 0) { in WriteTo()
968 output.WriteSFixed32(SingleSfixed32); in WriteTo()
1088 if (SingleSfixed32 != 0) { in CalculateSize()
1195 if (other.SingleSfixed32 != 0) { in MergeFrom()
1196 SingleSfixed32 = other.SingleSfixed32; in MergeFrom()
1328 SingleSfixed32 = input.ReadSFixed32(); in MergeFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DFieldAccessTest.cs66 …Assert.AreEqual(message.SingleSfixed32, fields[TestAllTypes.SingleSfixed32FieldNumber].Accessor.Ge… in GetValue()