Lines Matching refs:nextCp
232 const auto nextCp = Iterator().PeekCp();
233 if (KeywordsUtil::IsIdentifierStart(nextCp) || IsDecimalDigit(nextCp)) {
428 auto const checkOctalDigit = [this](char32_t const nextCp) -> void {
429 if (IsOctalDigit(nextCp)) {
470 char32_t nextCp = Iterator().Peek();
471 checkOctalDigit(nextCp);
473 if (nextCp == LEX_CHAR_BACK_TICK || nextCp == LEX_CHAR_BACKSLASH || nextCp == LEX_CHAR_DOLLAR_SIGN) {
475 templateStr.str.Append(nextCp);