• Home
  • Raw
  • Download

Lines Matching refs:CodedOutputStream

222 …(), (ref WriteContext ctx, string value) => ctx.WriteString(value), CodedOutputStream.ComputeStrin…  in ForString()
233 … (ref WriteContext ctx, ByteString value) => ctx.WriteBytes(value), CodedOutputStream.ComputeBytes… in ForBytes()
244 …Bool(), (ref WriteContext ctx, bool value) => ctx.WriteBool(value), CodedOutputStream.BoolSize, ta… in ForBool()
255 …, (ref WriteContext output, int value) => output.WriteInt32(value), CodedOutputStream.ComputeInt32… in ForInt32()
266 … (ref WriteContext output, int value) => output.WriteSInt32(value), CodedOutputStream.ComputeSInt3… in ForSInt32()
299 …(ref WriteContext output, uint value) => output.WriteUInt32(value), CodedOutputStream.ComputeUInt3… in ForUInt32()
310 … (ref WriteContext output, long value) => output.WriteInt64(value), CodedOutputStream.ComputeInt64… in ForInt64()
321 …(ref WriteContext output, long value) => output.WriteSInt64(value), CodedOutputStream.ComputeSInt6… in ForSInt64()
354 …ref WriteContext output, ulong value) => output.WriteUInt64(value), CodedOutputStream.ComputeUInt6… in ForUInt64()
365 …(ref WriteContext output, float value) => output.WriteFloat(value), CodedOutputStream.FloatSize, t… in ForFloat()
376 …ef WriteContext output, double value) => output.WriteDouble(value), CodedOutputStream.DoubleSize, … in ForDouble()
395 value => CodedOutputStream.ComputeEnumSize(toInt32(value)), tag, defaultValue); in ForEnum()
439 message => CodedOutputStream.ComputeMessageSize(message), tag);
484 message => CodedOutputStream.ComputeGroupSize(message), startTag, endTag);
628 return CodedOutputStream.ComputeLengthSize(fieldLength) + fieldLength;
795 tagSize = CodedOutputStream.ComputeRawVarint32Size(tag);
797 tagSize += CodedOutputStream.ComputeRawVarint32Size(endTag);
805 public void WriteTagAndValue(CodedOutputStream output, T value)