Lines Matching refs:input

74         internal static void Initialize(CodedInputStream input, out ParseContext ctx)
76 ctx.buffer = new ReadOnlySpan<byte>(input.InternalBuffer);
80 ctx.state = input.InternalState;
84 internal static void Initialize(ReadOnlySequence<byte> input, out ParseContext ctx)
86 Initialize(input, DefaultRecursionLimit, out ctx);
90 internal static void Initialize(ReadOnlySequence<byte> input, int recursionLimit, out ParseContext ctx)
99 SegmentedBufferHelper.Initialize(input, out ctx.state.segmentedBufferHelper, out ctx.buffer);
109 /// the end of the input.
131 /// Reads a field tag, returning the tag of 0 for "end of input".
135 /// the data in this CodedInputReader; it may be the end of the logical input
138 /// <returns>The next field tag, or 0 for end of input. (0 is never a valid tag.)</returns>
146 /// Reads a double field from the input.
155 /// Reads a float field from the input.
164 /// Reads a uint64 field from the input.
173 /// Reads an int64 field from the input.
182 /// Reads an int32 field from the input.
191 /// Reads a fixed64 field from the input.
200 /// Reads a fixed32 field from the input.
209 /// Reads a bool field from the input.
217 /// Reads a string field from the input.
226 /// Reads an embedded message field value from the input.
235 /// Reads an embedded group field from the input.
244 /// Reads a bytes field value from the input.
252 /// Reads a uint32 field value from the input.
261 /// Reads an enum field value from the input.
271 /// Reads an sfixed32 field value from the input.
280 /// Reads an sfixed64 field value from the input.
289 /// Reads an sint32 field value from the input.
298 /// Reads an sint64 field value from the input.
319 internal void CopyStateTo(CodedInputStream input)
321 input.InternalState = state;
324 internal void LoadStateFrom(CodedInputStream input)
326 state = input.InternalState;