Home
last modified time | relevance | path

Searched refs:CodePoint (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp29 static bool translateCodePointToUTF8(unsigned CodePoint, in translateCodePointToUTF8() argument
33 if (!ConvertCodePointToUTF8(CodePoint, TranslatedPtr)) in translateCodePointToUTF8()
58 uint64_t CodePoint = Tag.getValueAsInt("CodePoint"); in EmitClangCommentHTMLNamedCharacterReferences() local
61 if (!translateCodePointToUTF8(CodePoint, CLiteral)) { in EmitClangCommentHTMLNamedCharacterReferences()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp41 unsigned CodePoint) { in convertCodePointToUTF8() argument
44 if (llvm::ConvertCodePointToUTF8(CodePoint, ResolvedPtr)) in convertCodePointToUTF8()
70 unsigned CodePoint = 0; in resolveHTMLDecimalCharacterReference() local
73 CodePoint *= 10; in resolveHTMLDecimalCharacterReference()
74 CodePoint += Name[i] - '0'; in resolveHTMLDecimalCharacterReference()
76 return convertCodePointToUTF8(Allocator, CodePoint); in resolveHTMLDecimalCharacterReference()
80 unsigned CodePoint = 0; in resolveHTMLHexCharacterReference() local
82 CodePoint *= 16; in resolveHTMLHexCharacterReference()
85 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
87 return convertCodePointToUTF8(Allocator, CodePoint); in resolveHTMLHexCharacterReference()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp1615 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts)) in tryConsumeIdentifierUCN()
1635 llvm::UTF32 CodePoint; in tryConsumeIdentifierUTF8Char() local
3048 uint32_t CodePoint = 0; in tryReadUCN() local
3073 CodePoint <<= 4; in tryReadUCN()
3074 CodePoint += Value; in tryReadUCN()
3092 return CodePoint; in tryReadUCN()
3106 if (CodePoint == 0x24 || CodePoint == 0x40 || CodePoint == 0x60) in tryReadUCN()
3107 return CodePoint; in tryReadUCN()
3112 if (CodePoint < 0x20 || CodePoint >= 0x7F) in tryReadUCN()
3121 } else if (CodePoint >= 0xD800 && CodePoint <= 0xDFFF) { in tryReadUCN()
[all …]
H A DLiteralSupport.cpp258 uint32_t CodePoint = 0; in expandUCNs() local
263 CodePoint <<= 4; in expandUCNs()
264 CodePoint += Value; in expandUCNs()
267 appendCodePoint(CodePoint, Buf); in expandUCNs()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.cpp58 const uint32_t CodePoint = I == N ? 0 : S->getCodeUnit(I); in createGlobalString() local
62 Field.deref<T>() = T::from(CodePoint, BitWidth); in createGlobalString()
67 Field.deref<T>() = T::from(CodePoint, BitWidth); in createGlobalString()
72 Field.deref<T>() = T::from(CodePoint, BitWidth); in createGlobalString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp833 static bool isAsciiPrintable(uint64_t CodePoint) { in isAsciiPrintable() argument
834 return 0x20 <= CodePoint && CodePoint <= 0x7e; in isAsciiPrintable()
840 uint64_t CodePoint = parseHexNumber(HexDigits); in demangleConstChar() local
847 switch (CodePoint) { in demangleConstChar()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCommentHTMLNamedCharacterReferences.td4 int CodePoint = codePoint;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp8296 llvm::UTF32 CodePoint; in HandleInvalidConversionSpecifier() local
8301 llvm::convertUTF8Sequence(B, E, &CodePoint, llvm::strictConversion); in HandleInvalidConversionSpecifier()
8305 CodePoint = (llvm::UTF32)FirstChar; in HandleInvalidConversionSpecifier()
8309 if (CodePoint < 256) in HandleInvalidConversionSpecifier()
8310 OS << "\\x" << llvm::format("%02x", CodePoint); in HandleInvalidConversionSpecifier()
8311 else if (CodePoint <= 0xFFFF) in HandleInvalidConversionSpecifier()
8312 OS << "\\u" << llvm::format("%04x", CodePoint); in HandleInvalidConversionSpecifier()
8314 OS << "\\U" << llvm::format("%08x", CodePoint); in HandleInvalidConversionSpecifier()