Home
last modified time | relevance | path

Searched refs:SingleUint64 (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs72 SingleUint64 = UInt64.MaxValue, in CreateFullTestAllTypes()
DGeneratedMessageTest.cs84 Assert.AreEqual(0UL, message.SingleUint64); in DefaultValues()
163 SingleUint64 = ulong.MaxValue in RoundTrip_SingleValues()
459 SingleUint64 = ulong.MaxValue in CloneSingleNonMessageValues()
DJsonParserTest.cs322 Assert.AreEqual(expectedParsedValue, parsed.SingleUint64); in StringToUInt64_Valid()
512 Assert.AreEqual(expectedParsedValue, parsed.SingleUint64); in NumberToUInt64_Valid()
DJsonFormatterTest.cs93 SingleUint64 = ulong.MaxValue, in AllSingleFields()
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestProto3.cs359 public ulong SingleUint64 { property in Google.Protobuf.TestProtos.TestAllTypes
826 if (SingleUint64 != other.SingleUint64) return false; in Equals()
880 if (SingleUint64 != 0UL) hash ^= SingleUint64.GetHashCode(); in GetHashCode()
946 if (SingleUint64 != 0UL) { in WriteTo()
948 output.WriteUInt64(SingleUint64); in WriteTo()
1073 if (SingleUint64 != 0UL) { in CalculateSize()
1074 size += 1 + pb::CodedOutputStream.ComputeUInt64Size(SingleUint64); in CalculateSize()
1180 if (other.SingleUint64 != 0UL) { in MergeFrom()
1181 SingleUint64 = other.SingleUint64; in MergeFrom()
1308 SingleUint64 = input.ReadUInt64(); in MergeFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DFieldAccessTest.cs69 …Assert.AreEqual(message.SingleUint64, fields[TestAllTypes.SingleUint64FieldNumber].Accessor.GetVal… in GetValue()