Lines Matching defs:cp
100 bool GetRegExpFlag(char32_t cp, RegExpFlags &flag);
170 inline static bool IsDecimalDigit(uint32_t cp);
224 char32_t cp = Iterator().Peek();
226 switch (cp) {
241 if (cp == LEX_CHAR_CR) {
267 if (end == cp) {
315 const auto cp = Iterator().Peek();
318 if (!IsHexDigit(cp)) {
328 code = code * MULTIPLIER + HexValue(cp);
339 auto cp = Iterator().Peek();
340 if (!rangeCheck(cp)) {
347 cp = Iterator().Peek();
348 if (rangeCheck(cp)) {
349 number = number * radix + HexValue(cp);
355 if (cp == LEX_CHAR_UNDERSCORE) {
431 inline bool Lexer::IsDecimalDigit(uint32_t cp)
433 return (cp >= LEX_CHAR_0 && cp <= LEX_CHAR_9);