• Home
  • Raw
  • Download

Lines Matching refs:OptionalInt32

53                     Bb = new ParseContextEnabledMessageB { OptionalInt32 = 12345 }  in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedInputStream()
55 OptionalInt32 = 6789 in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedInputStream()
67 Assert.AreEqual(12345, parsed.A.Bb.OptionalInt32); in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedInputStream()
68 Assert.AreEqual(6789, parsed.OptionalInt32); in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedInputStream()
78 Bb = new ParseContextEnabledMessageB { OptionalInt32 = 12345 } in LegacyGeneratedCodeThrowsWithReadOnlySequence()
80 OptionalInt32 = 6789 in LegacyGeneratedCodeThrowsWithReadOnlySequence()
110 Bb = new ParseContextEnabledMessageB { OptionalInt32 = 12345 } in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedOutputStream()
112 OptionalInt32 = 6789 in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedOutputStream()
122 Assert.AreEqual(12345, parsed.A.Bb.OptionalInt32); in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedOutputStream()
123 Assert.AreEqual(6789, parsed.OptionalInt32); in IntermixingOfNewAndLegacyGeneratedCodeWorksWithCodedOutputStream()
138 Bb = new ParseContextEnabledMessageB { OptionalInt32 = 12345 } in LegacyGeneratedCodeThrowsWithIBufferWriter()
140 OptionalInt32 = 6789 in LegacyGeneratedCodeThrowsWithIBufferWriter()
227 public int OptionalInt32 { property in Google.Protobuf.LegacyGeneratedCodeTest.ParseContextEnabledMessageB
245 if (OptionalInt32 != 0) in IBufferMessage.InternalWriteTo()
248 output.WriteInt32(OptionalInt32); in IBufferMessage.InternalWriteTo()
261 if (OptionalInt32 != 0) { in CalculateSize()
262 size += 1 + pb::CodedOutputStream.ComputeInt32Size(OptionalInt32); in CalculateSize()
288 OptionalInt32 = input.ReadInt32(); in IBufferMessage.InternalMergeFrom()