Lines Matching refs:CodePoint
805 static bool isAsciiPrintable(uint64_t CodePoint) { in isAsciiPrintable() argument
806 return 0x20 <= CodePoint && CodePoint <= 0x7e; in isAsciiPrintable()
812 uint64_t CodePoint = parseHexNumber(HexDigits); in demangleConstChar() local
819 switch (CodePoint) { in demangleConstChar()
1076 static inline bool encodeUTF8(size_t CodePoint, char *Output) { in encodeUTF8() argument
1077 if (0xD800 <= CodePoint && CodePoint <= 0xDFFF) in encodeUTF8()
1080 if (CodePoint <= 0x7F) { in encodeUTF8()
1081 Output[0] = CodePoint; in encodeUTF8()
1085 if (CodePoint <= 0x7FF) { in encodeUTF8()
1086 Output[0] = 0xC0 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1087 Output[1] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()
1091 if (CodePoint <= 0xFFFF) { in encodeUTF8()
1092 Output[0] = 0xE0 | (CodePoint >> 12); in encodeUTF8()
1093 Output[1] = 0x80 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1094 Output[2] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()
1098 if (CodePoint <= 0x10FFFF) { in encodeUTF8()
1099 Output[0] = 0xF0 | (CodePoint >> 18); in encodeUTF8()
1100 Output[1] = 0x80 | ((CodePoint >> 12) & 0x3F); in encodeUTF8()
1101 Output[2] = 0x80 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1102 Output[3] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()