Lines Matching refs:first
66 /// Creates a tokenizer that first replays the given list of tokens, then continues reading
169 /// Tokenizer which first exhausts a list of tokens, then consults another tokenizer.
308 throw new InvalidJsonException("Invalid first character of token: " + next.Value);
423 /// It is assumed that the first letter of the literal has already been read.
486 char first = reader.ReadOrFail("Invalid numeric literal");
487 if (first < '0' || first > '9')
491 builder.Append(first);
494 if (first == '0' && digitCount != 0)
644 /// Before the *first* property in an object.
657 /// Before any property other than the first in an object.
680 /// Before the *first* value in an array.