• Home
  • Raw
  • Download

Lines Matching refs:WriteContext

222 …w FieldCodec<string>((ref ParseContext ctx) => ctx.ReadString(), (ref WriteContext ctx, string val…  in ForString()
233 …ieldCodec<ByteString>((ref ParseContext ctx) => ctx.ReadBytes(), (ref WriteContext ctx, ByteString… in ForBytes()
244 …return new FieldCodec<bool>((ref ParseContext ctx) => ctx.ReadBool(), (ref WriteContext ctx, bool … in ForBool()
255 …return new FieldCodec<int>((ref ParseContext ctx) => ctx.ReadInt32(), (ref WriteContext output, in… in ForInt32()
266 … new FieldCodec<int>((ref ParseContext ctx) => ctx.ReadSInt32(), (ref WriteContext output, int val… in ForSInt32()
277 …ew FieldCodec<uint>((ref ParseContext ctx) => ctx.ReadFixed32(), (ref WriteContext output, uint va… in ForFixed32()
288 …ew FieldCodec<int>((ref ParseContext ctx) => ctx.ReadSFixed32(), (ref WriteContext output, int val… in ForSFixed32()
299 …new FieldCodec<uint>((ref ParseContext ctx) => ctx.ReadUInt32(), (ref WriteContext output, uint va… in ForUInt32()
310 … new FieldCodec<long>((ref ParseContext ctx) => ctx.ReadInt64(), (ref WriteContext output, long va… in ForInt64()
321 …new FieldCodec<long>((ref ParseContext ctx) => ctx.ReadSInt64(), (ref WriteContext output, long va… in ForSInt64()
332 …w FieldCodec<ulong>((ref ParseContext ctx) => ctx.ReadFixed64(), (ref WriteContext output, ulong v… in ForFixed64()
343 …w FieldCodec<long>((ref ParseContext ctx) => ctx.ReadSFixed64(), (ref WriteContext output, long va… in ForSFixed64()
354 …ew FieldCodec<ulong>((ref ParseContext ctx) => ctx.ReadUInt64(), (ref WriteContext output, ulong v… in ForUInt64()
365 …new FieldCodec<float>((ref ParseContext ctx) => ctx.ReadFloat(), (ref WriteContext output, float v… in ForFloat()
376 …w FieldCodec<double>((ref ParseContext ctx) => ctx.ReadDouble(), (ref WriteContext output, double … in ForDouble()
394 (ref WriteContext output, T value) => output.WriteEnum(toInt32(value)), in ForEnum()
413 (ref WriteContext output, T value) => output.WriteMessage(value),
458 (ref WriteContext output, T value) => output.WriteGroup(value),
495 … (ref WriteContext output, T value) => WrapperCodecs.Write<T>(ref output, value, nestedCodec),
512 …(ref WriteContext output, T? value) => WrapperCodecs.Write<T>(ref output, value.Value, nestedCodec…
619 internal static void Write<T>(ref WriteContext ctx, T value, FieldCodec<T> codec)
634 internal delegate void ValueWriter<T>(ref WriteContext ctx, T value);
807 WriteContext.Initialize(output, out WriteContext ctx);
832 public void WriteTagAndValue(ref WriteContext ctx, T value)