HomeSort by: relevance | last modified time | path
    Searched defs:CodePoint (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 29 static bool translateCodePointToUTF8(unsigned CodePoint,
33 if (!ConvertCodePointToUTF8(CodePoint, TranslatedPtr))
58 uint64_t CodePoint = Tag.getValueAsInt("CodePoint");
61 if (!translateCodePointToUTF8(CodePoint, CLiteral)) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentLexer.cpp 41 unsigned CodePoint) {
44 if (llvm::ConvertCodePointToUTF8(CodePoint, ResolvedPtr))
70 unsigned CodePoint = 0;
73 CodePoint *= 10;
74 CodePoint += Name[i] - '0';
76 return convertCodePointToUTF8(Allocator, CodePoint);
80 unsigned CodePoint = 0;
82 CodePoint *= 16;
85 CodePoint += llvm::hexDigitValue(C);
87 return convertCodePointToUTF8(Allocator, CodePoint);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.cpp 58 const uint32_t CodePoint = I == N ? 0 : S->getCodeUnit(I);
62 Field.deref<T>() = T::from(CodePoint, BitWidth);
67 Field.deref<T>() = T::from(CodePoint, BitWidth);
72 Field.deref<T>() = T::from(CodePoint, BitWidth);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 230 static void appendCodePoint(unsigned Codepoint,
234 bool Res = llvm::ConvertCodePointToUTF8(Codepoint, ResultPtr);
258 uint32_t CodePoint = 0;
263 CodePoint <<= 4;
264 CodePoint += Value;
267 appendCodePoint(CodePoint, Buf);
Lexer.cpp 1599 uint32_t CodePoint = tryReadUCN(UCNPtr, CurPtr, /*Token=*/nullptr);
1600 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts))
1604 maybeDiagnoseIDCharCompat(PP->getDiagnostics(), CodePoint,
1620 llvm::UTF32 CodePoint;
1624 &CodePoint,
1627 !isAllowedIDChar(static_cast<uint32_t>(CodePoint), LangOpts))
1631 maybeDiagnoseIDCharCompat(PP->getDiagnostics(), CodePoint,
1634 maybeDiagnoseUTF8Homoglyph(PP->getDiagnostics(), CodePoint,
3014 uint32_t CodePoint = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
RustDemangle.cpp 594 /// Returns true if CodePoint represents a printable ASCII character.
595 static bool isAsciiPrintable(uint64_t CodePoint) {
596 return 0x20 <= CodePoint && CodePoint <= 0x7e;
602 uint64_t CodePoint = parseHexNumber(HexDigits);
609 switch (CodePoint) {
629 if (isAsciiPrintable(CodePoint)) {
630 char C = CodePoint;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 8024 llvm::UTF32 CodePoint;
8029 llvm::convertUTF8Sequence(B, E, &CodePoint, llvm::strictConversion);
8033 CodePoint = (llvm::UTF32)FirstChar;
8037 if (CodePoint < 256)
8038 OS << "\\x" << llvm::format("%02x", CodePoint);
8039 else if (CodePoint <= 0xFFFF)
8040 OS << "\\u" << llvm::format("%04x", CodePoint);
8042 OS << "\\U" << llvm::format("%08x", CodePoint);

Completed in 65 milliseconds