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

References

tools/clang/lib/Lex/LiteralSupport.cpp
  295     UcnVal <<= 4;
  296     UcnVal |= CharVal;
  307   if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) || // surrogate codepoints
  307   if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) || // surrogate codepoints
  308       UcnVal > 0x10FFFF) {                      // maximum legal UTF32 value
  317   if (UcnVal < 0xa0 &&
  318       (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) {  // $, @, `
  318       (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) {  // $, @, `
  318       (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) {  // $, @, `
  321       char BasicSCSChar = UcnVal;
  322       if (UcnVal >= 0x20 && UcnVal < 0x7f)
  322       if (UcnVal >= 0x20 && UcnVal < 0x7f)