Lines Matching refs:CodePoint
799 static bool isAsciiPrintable(uint64_t CodePoint) { in isAsciiPrintable() argument
800 return 0x20 <= CodePoint && CodePoint <= 0x7e; in isAsciiPrintable()
806 uint64_t CodePoint = parseHexNumber(HexDigits); in demangleConstChar() local
813 switch (CodePoint) { in demangleConstChar()
1070 static inline bool encodeUTF8(size_t CodePoint, char *Output) { in encodeUTF8() argument
1071 if (0xD800 <= CodePoint && CodePoint <= 0xDFFF) in encodeUTF8()
1074 if (CodePoint <= 0x7F) { in encodeUTF8()
1075 Output[0] = CodePoint; in encodeUTF8()
1079 if (CodePoint <= 0x7FF) { in encodeUTF8()
1080 Output[0] = 0xC0 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1081 Output[1] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()
1085 if (CodePoint <= 0xFFFF) { in encodeUTF8()
1086 Output[0] = 0xE0 | (CodePoint >> 12); in encodeUTF8()
1087 Output[1] = 0x80 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1088 Output[2] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()
1092 if (CodePoint <= 0x10FFFF) { in encodeUTF8()
1093 Output[0] = 0xF0 | (CodePoint >> 18); in encodeUTF8()
1094 Output[1] = 0x80 | ((CodePoint >> 12) & 0x3F); in encodeUTF8()
1095 Output[2] = 0x80 | ((CodePoint >> 6) & 0x3F); in encodeUTF8()
1096 Output[3] = 0x80 | (CodePoint & 0x3F); in encodeUTF8()