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