Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs71 SingleUint32 = UInt32.MaxValue, in CreateFullTestAllTypes()
DGeneratedMessageTest.cs83 Assert.AreEqual(0U, message.SingleUint32); in DefaultValues()
162 SingleUint32 = uint.MaxValue, in RoundTrip_SingleValues()
458 SingleUint32 = uint.MaxValue, in CloneSingleNonMessageValues()
DJsonParserTest.cs278 Assert.AreEqual(expectedParsedValue, parsed.SingleUint32); in StringToUInt32_Valid()
461 Assert.AreEqual(expectedParsedValue, parsed.SingleUint32); in NumberToUInt32_Valid()
DJsonFormatterTest.cs92 SingleUint32 = uint.MaxValue, in AllSingleFields()
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestProto3.cs349 public uint SingleUint32 { property in Google.Protobuf.TestProtos.TestAllTypes
825 if (SingleUint32 != other.SingleUint32) return false; in Equals()
879 if (SingleUint32 != 0) hash ^= SingleUint32.GetHashCode(); in GetHashCode()
942 if (SingleUint32 != 0) { in WriteTo()
944 output.WriteUInt32(SingleUint32); in WriteTo()
1070 if (SingleUint32 != 0) { in CalculateSize()
1071 size += 1 + pb::CodedOutputStream.ComputeUInt32Size(SingleUint32); in CalculateSize()
1177 if (other.SingleUint32 != 0) { in MergeFrom()
1178 SingleUint32 = other.SingleUint32; in MergeFrom()
1304 SingleUint32 = input.ReadUInt32(); in MergeFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DFieldAccessTest.cs68 …Assert.AreEqual(message.SingleUint32, fields[TestAllTypes.SingleUint32FieldNumber].Accessor.GetVal… in GetValue()