Home
last modified time | relevance | path

Searched refs:isUTF8 (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dconnection.h30 bool isUTF8{false}; // ENCODING='UTF-8'
42 return sizeof(CHAR) > 1 || isUTF8; in useUTF8()
H A Dio-api.cpp866 bool isUTF8{false}; in IONAME() local
870 isUTF8 = true; in IONAME()
873 isUTF8 = false; in IONAME()
879 if (isUTF8 != open->unit().isUTF8) { in IONAME()
883 open->unit().isUTF8 = isUTF8; in IONAME()
H A Dunit.h40 isUTF8 = executionEnvironment.defaultUTF8;
H A Dio-stmt.cpp581 if (GetConnectionState().isUTF8) { in GetCurrentChar()
1133 : unit().isUTF8 ? "UTF-8" in Inquire()
H A Dedit-input.cpp731 if (connection.isUTF8) { in EditCharacterInput()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DLiteralSupport.h203 bool isUTF8() const { return Kind == tok::utf8_char_constant; } in isUTF8() function
268 bool isUTF8() const { return Kind == tok::utf8_string_literal; } in isUTF8() function
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DJSON.h78 bool isUTF8(llvm::StringRef S, size_t *ErrOffset = nullptr);
311 if (LLVM_UNLIKELY(!isUTF8(V))) { in Value()
323 if (LLVM_UNLIKELY(!isUTF8(V))) { in Value()
560 if (LLVM_UNLIKELY(!isUTF8(*Owned))) { in ObjectKey()
567 if (LLVM_UNLIKELY(!isUTF8(Data))) { in ObjectKey()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DCodeCompletionStrings.cpp92 if (!llvm::json::isUTF8(Doc)) in getDeclComment()
/llvm-project-15.0.7/llvm/lib/Support/
H A DJSON.cpp371 if (isUTF8(StringRef(Start, End - Start), &ErrOffset)) in checkUTF8()
694 bool isUTF8(llvm::StringRef S, size_t *ErrOffset) { in isUTF8() function
888 if (LLVM_LIKELY(isUTF8(Key))) { in attributeBegin()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DJSONTest.cpp232 EXPECT_TRUE(isUTF8(Valid)) << Valid; in TEST()
244 EXPECT_FALSE(isUTF8(Invalid.first)) << Invalid.first; in TEST()
/llvm-project-15.0.7/clang/lib/AST/
H A DOSLog.cpp204 assert(Lit && (Lit->isOrdinary() || Lit->isUTF8())); in computeOSLogBufferLayout()
/llvm-project-15.0.7/lldb/source/Target/
H A DStatistics.cpp26 if (LLVM_LIKELY(llvm::json::isUTF8(str))) in EmplaceSafeString()
/llvm-project-15.0.7/clang/lib/Lex/
H A DPPExpressions.cpp416 else if (Literal.isUTF8()) { in EvaluateValue()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp34 if (LLVM_LIKELY(llvm::json::isUTF8(str))) in EmplaceSafeString()
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/
H A DRename.cpp469 assert(llvm::json::isUTF8(Ident)); in mayBeValidIdentifier()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp1147 if (!Format->isOrdinary() && !Format->isUTF8()) in checkFortifiedBuiltinMemoryFunction()
1192 if (!Format->isOrdinary() && !Format->isUTF8()) in checkFortifiedBuiltinMemoryFunction()
7027 if (!Literal || (!Literal->isOrdinary() && !Literal->isUTF8())) { in CheckOSLogFormatStringArg()
8446 bool isUTF8() const { return FExpr->isUTF8(); } in isUTF8() function in __anon8097fee11b11::FormatStringLiteral
10530 if (!FExpr->isAscii() && !FExpr->isUTF8()) { in CheckFormatString()
H A DSemaExprObjC.cpp536 assert((SL->isOrdinary() || SL->isUTF8()) && in BuildObjCBoxedExpr()
H A DSemaExpr.cpp1874 } else if (Literal.isUTF8()) { in ActOnStringLiteral()
3633 else if (Literal.isUTF8() && getLangOpts().C2x) in ActOnCharacterConstant()
3635 else if (Literal.isUTF8() && getLangOpts().Char8) in ActOnCharacterConstant()
3654 else if (Literal.isUTF8()) in ActOnCharacterConstant()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h1888 bool isUTF8() const { return getKind() == UTF8; } in isUTF8() function