13 references to ChPeek
Microsoft.ML.Transforms (13)
Expression\Lexer.cs (13)
184
if (
ChPeek
(1) == '"')
186
if (LexCharUtils.StartKind(
ChPeek
(1)) == LexStartKind.Ident)
232
char ch =
ChPeek
(_sb.Length);
254
if (ChCur == '.' && !LexCharUtils.IsDigit(
ChPeek
(1)))
259
if (ChCur == '0' && (
ChPeek
(1) == 'x' ||
ChPeek
(1) == 'X') && LexCharUtils.IsHexDigit(
ChPeek
(2)))
268
Contracts.Assert(LexCharUtils.IsDigit(ChCur) || ChCur == '.' && LexCharUtils.IsDigit(
ChPeek
(1)));
278
if (fDot || !LexCharUtils.IsDigit(
ChPeek
(1)))
290
char chTmp =
ChPeek
(1);
291
if (LexCharUtils.IsDigit(chTmp) || (chTmp == '+' || chTmp == '-') && LexCharUtils.IsDigit(
ChPeek
(2)))
724
switch (
ChPeek
(1))
800
if (ChCur == '\xD' &&
ChPeek
(1) == '\xA')