Home | History | Annotate | Download | only in Lex

Lines Matching refs:CodePoint

1473       uint32_t CodePoint = tryReadUCN(UCNPtr, CurPtr, /*Token=*/0);
1474 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts))
1478 maybeDiagnoseIDCharCompat(PP->getDiagnostics(), CodePoint,
1495 UTF32 CodePoint;
1499 &CodePoint,
1502 !isAllowedIDChar(static_cast<uint32_t>(CodePoint), LangOpts))
1506 maybeDiagnoseIDCharCompat(PP->getDiagnostics(), CodePoint,
2574 uint32_t CodePoint = 0;
2599 CodePoint <<= 4;
2600 CodePoint += Value;
2627 if (CodePoint < 0xA0) {
2628 if (CodePoint == 0x24 || CodePoint == 0x40 || CodePoint == 0x60)
2629 return CodePoint;
2634 if (CodePoint < 0x20 || CodePoint >= 0x7F)
2637 char C = static_cast<char>(CodePoint);
2644 } else if (CodePoint >= 0xD800 && CodePoint <= 0xDFFF) {
2657 return CodePoint;
3368 if (uint32_t CodePoint = tryReadUCN(CurPtr, BufferPtr, &Result))
3369 return LexUnicode(Result, CodePoint, CurPtr);
3380 UTF32 CodePoint;
3388 &CodePoint,
3391 return LexUnicode(Result, CodePoint, CurPtr);