Home
last modified time | relevance | path

Searched refs:WChar (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPrettyPrinter.h76 MSWChar(LO.MicrosoftExt && !LO.WChar), IncludeNewlines(true), in PrintingPolicy()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp128 Opts.WChar = Std.isCPlusPlus(); in setLangDefaults()
H A DIdentifierTable.cpp177 return LangOpts.WChar ? KS_Enabled : KS_Unknown; in getKeywordStatusHelper()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp31 LangOpts.WChar = 1; // To get wchar_t in createLangOpts()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DOSTargets.h752 if (Opts.CPlusPlus && Opts.WChar) { in getOSDefines()
807 if (Opts.CPlusPlus && Opts.WChar) { in getOSDefines()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp1758 bool WChar = ID == Builtin::BIwmemcpy || ID == Builtin::BIwmemmove || in interp__builtin_memcpy() local
1771 << /*IsMove=*/Move << /*IsWchar=*/WChar << !SrcPtr.isZero() in interp__builtin_memcpy()
1783 << Move << WChar << DestPtr.isIntegralPointer() << DiagVal; in interp__builtin_memcpy()
1802 if (WChar) { in interp__builtin_memcpy()
1812 << Move << WChar << 0 << DestElemType << Size << DestElemSize; in interp__builtin_memcpy()
1856 << Move << WChar << (Size.ugt(RemainingSrcBytes) ? 1 : 2) in interp__builtin_memcpy()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1051 if (LangOpts.WChar) { in InitializePredefinedMacros()
1382 DEFINE_LOCK_FREE_MACRO(WCHAR_T, WChar); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp663 lang_opts.WChar = true; in SetupLangOpts()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def73 LANGOPT(WChar , 1, 0, NotCompatible, "wchar_t keyword")
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp10165 bool WChar = BuiltinOp == Builtin::BIwmemcpy || in VisitBuiltinCallExpr() local
10200 << Move << WChar << !!Src.Base in VisitBuiltinCallExpr()
10230 if (!WChar) { in VisitBuiltinCallExpr()
10236 << Move << WChar << 0 << T << toString(OrigN, 10, /*Signed*/false) in VisitBuiltinCallExpr()
10249 << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T in VisitBuiltinCallExpr()
10264 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; in VisitBuiltinCallExpr()
10275 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; in VisitBuiltinCallExpr()
H A DASTContext.cpp1359 if (LangOpts.CPlusPlus && LangOpts.WChar) in InitBuiltinTypes()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td8389 MarshallingInfoNegativeFlag<LangOpts<"WChar">, cplusplus.KeyPath>,