reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Lex/Lexer.cpp
 3010     CodePoint <<= 4;
 3011     CodePoint += Value;
 3029     return CodePoint;
 3042   if (CodePoint < 0xA0) {
 3043     if (CodePoint == 0x24 || CodePoint == 0x40 || CodePoint == 0x60)
 3043     if (CodePoint == 0x24 || CodePoint == 0x40 || CodePoint == 0x60)
 3043     if (CodePoint == 0x24 || CodePoint == 0x40 || CodePoint == 0x60)
 3044       return CodePoint;
 3049       if (CodePoint < 0x20 || CodePoint >= 0x7F)
 3049       if (CodePoint < 0x20 || CodePoint >= 0x7F)
 3052         char C = static_cast<char>(CodePoint);
 3058   } else if (CodePoint >= 0xD800 && CodePoint <= 0xDFFF) {
 3058   } else if (CodePoint >= 0xD800 && CodePoint <= 0xDFFF) {
 3071   return CodePoint;