Searched refs:CPlusPlus14 (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandard.h49 CPlusPlus14 = (1 << 7), enumerator in enum:clang::LangFeatures
106 bool isCPlusPlus14() const { return Flags & CPlusPlus14; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DOSTargets.cpp186 else if (Opts.CPlusPlus14)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp289 LangTo.CPlusPlus14 != LangFrom.CPlusPlus14 ||
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp387 else if (LangOpts.CPlusPlus14)
496 LangOpts.CPlusPlus14 ? "201304L" : "200704");
517 if (LangOpts.CPlusPlus14) {
H A DCompilerInvocation.cpp2288 Opts.CPlusPlus14 = Std.isCPlusPlus14();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp23 LangOpts.CPlusPlus14 = 1;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp808 if (!LangOpts.CPlusPlus14)
919 PP.getLangOpts().CPlusPlus14
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp697 assert((!isa<LambdaScopeInfo>(CSI) || !getLangOpts().CPlusPlus14) &&
933 getLangOpts().CPlusPlus14 ? Context.getAutoDeductType()
1084 Diag(C->Loc, getLangOpts().CPlusPlus14
H A DSemaDeclCXX.cpp1816 SemaRef.getLangOpts().CPlusPlus14
1820 } else if (!SemaRef.getLangOpts().CPlusPlus14) {
1871 SemaRef.getLangOpts().CPlusPlus14
1875 } else if (!SemaRef.getLangOpts().CPlusPlus14) {
2044 if (!SemaRef.getLangOpts().CPlusPlus14)
2176 SemaRef.getLangOpts().CPlusPlus14
2249 bool OK = SemaRef.getLangOpts().CPlusPlus14 &&
2266 if (!SemaRef.getLangOpts().CPlusPlus14)
2275 SemaRef.getLangOpts().CPlusPlus14
2284 if (!SemaRef.getLangOpts().CPlusPlus14)
[all...]
H A DSemaType.cpp1348 if (S.getLangOpts().CPlusPlus14 &&
3134 if (!SemaRef.getLangOpts().CPlusPlus14 || !Auto ||
3191 if (!SemaRef.getLangOpts().CPlusPlus14 || !IsCXXAutoType)
3196 if (!SemaRef.getLangOpts().CPlusPlus14 || !IsCXXAutoType)
4693 if (!S.getLangOpts().CPlusPlus14) {
H A DSemaOverload.cpp1240 if (!getLangOpts().CPlusPlus14 && NewMethod->isConstexpr() &&
5965 if (getLangOpts().CPlusPlus14)
5972 assert((!ConvTemplate || getLangOpts().CPlusPlus14) &&
5985 if (!ConvTemplate && getLangOpts().CPlusPlus14) {
5997 if (getLangOpts().CPlusPlus14) {
7140 if (getLangOpts().CPlusPlus14 && ConvType->isUndeducedType()) {
11582 if (S.getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
H A DSemaTemplateDeduction.cpp3519 if (S.getLangOpts().CPlusPlus14 && Fn->getReturnType()->isUndeducedType() &&
4139 if (getLangOpts().CPlusPlus14 && IsAddressOfFunction &&
H A DSemaDecl.cpp6821 getLangOpts().CPlusPlus14
8871 if (getLangOpts().CPlusPlus14 &&
8876 if (getLangOpts().CPlusPlus14 &&
10452 if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
13928 if (getLangOpts().CPlusPlus14) {
H A DSemaExprCXX.cpp1682 if (getLangOpts().CPlusPlus14) {
1915 if (getLangOpts().CPlusPlus14) {
H A DSemaStmt.cpp3658 if (getLangOpts().CPlusPlus14) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp627 g_options.CPlusPlus14 = true;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp114 .Case("cplusplus14", LangOpts.CPlusPlus14)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp692 const bool DoubleSquareBracket = LO.CPlusPlus14 || LO.C2x;
H A DExprConstant.cpp3130 if (!Info.getLangOpts().CPlusPlus14)
3572 if (Info.getLangOpts().CPlusPlus14 &&
3703 if ((Frame && Info.getLangOpts().CPlusPlus14 &&
3787 if (!Info.getLangOpts().CPlusPlus14) {
3912 if (!Info.getLangOpts().CPlusPlus14) {
4056 if (!Info.getLangOpts().CPlusPlus14) {
7165 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7694 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7707 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7729 if (!Info.getLangOpts().CPlusPlus14
[all...]
H A DDeclCXX.cpp1086 if (!getASTContext().getLangOpts().CPlusPlus14)
H A DType.cpp2390 if (Ctx.getLangOpts().CPlusPlus14 && isVoidType())
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2519 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp969 getLangOpts().CPlusPlus14
H A DParseDecl.cpp6354 if (D.getDeclSpec().hasConstexprSpecifier() && !getLangOpts().CPlusPlus14)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp559 else if (LO.CPlusPlus14)

Completed in 427 milliseconds

12