/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | LangStandards.def | 134 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | Digraphs) 139 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | Digraphs | 145 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 151 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 157 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 163 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 169 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 175 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 181 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | 187 LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 | [all …]
|
H A D | Features.def | 203 FEATURE(cxx_aggregate_nsdmi, LangOpts.CPlusPlus14) 204 FEATURE(cxx_binary_literals, LangOpts.CPlusPlus14) 205 FEATURE(cxx_contextual_conversions, LangOpts.CPlusPlus14) 206 FEATURE(cxx_decltype_auto, LangOpts.CPlusPlus14) 207 FEATURE(cxx_generic_lambdas, LangOpts.CPlusPlus14) 208 FEATURE(cxx_init_captures, LangOpts.CPlusPlus14) 209 FEATURE(cxx_relaxed_constexpr, LangOpts.CPlusPlus14) 210 FEATURE(cxx_return_type_deduction, LangOpts.CPlusPlus14) 211 FEATURE(cxx_variable_templates, LangOpts.CPlusPlus14)
|
H A D | LangStandard.h | 58 CPlusPlus14 = (1 << 8), enumerator 120 bool isCPlusPlus14() const { return Flags & CPlusPlus14; } in isCPlusPlus14()
|
H A D | LangOptions.def | 98 LANGOPT(CPlusPlus14 , 1, 0, "C++14")
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | LangOptions.cpp | 118 Opts.CPlusPlus14 = Std.isCPlusPlus14(); in setLangDefaults()
|
H A D | Module.cpp | 108 .Case("cplusplus14", LangOpts.CPlusPlus14) in hasFeature()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | InitPreprocessor.cpp | 483 else if (LangOpts.CPlusPlus14) in InitializeStandardPredefinedMacros() 667 : LangOpts.CPlusPlus14 ? "201304L" in InitializeCPlusPlusFeatureTestMacros() 693 if (LangOpts.CPlusPlus14) { in InitializeCPlusPlusFeatureTestMacros()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
H A D | HeaderIncludes.cpp | 25 LangOpts.CPlusPlus14 = 1; in createLangOpts()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusNameParser.cpp | 751 g_options.CPlusPlus14 = true; in GetLangOptions()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaLambda.cpp | 694 assert((!isa<LambdaScopeInfo>(CSI) || !getLangOpts().CPlusPlus14) && in deduceClosureReturnType() 908 QualType DefaultTypeForNoTrailingReturn = S.getLangOpts().CPlusPlus14 in getDummyLambdaType() 1173 Diag(C->Loc, getLangOpts().CPlusPlus14 in ActOnLambdaExpressionAfterIntroducer()
|
H A D | SemaDeclCXX.cpp | 1921 SemaRef.getLangOpts().CPlusPlus14 in CheckConstexprDeclStmt() 1925 } else if (!SemaRef.getLangOpts().CPlusPlus14) { in CheckConstexprDeclStmt() 1986 SemaRef.getLangOpts().CPlusPlus14 in CheckConstexprDeclStmt() 1990 } else if (!SemaRef.getLangOpts().CPlusPlus14) { in CheckConstexprDeclStmt() 2162 if (!SemaRef.getLangOpts().CPlusPlus14) in CheckConstexprFunctionStmt() 2315 SemaRef.getLangOpts().CPlusPlus14 in CheckConstexprFunctionBody() 2394 if (!SemaRef.getLangOpts().CPlusPlus14) in CheckConstexprFunctionBody() 2403 SemaRef.getLangOpts().CPlusPlus14 in CheckConstexprFunctionBody() 2412 if (!SemaRef.getLangOpts().CPlusPlus14) in CheckConstexprFunctionBody() 2470 bool OK = SemaRef.getLangOpts().CPlusPlus14 in CheckConstexprMissingReturn() [all...] |
H A D | SemaType.cpp | 950 if (S.getLangOpts().CPlusPlus14 && in ConvertDeclSpecToType() 1960 if (S.getLangOpts().CPlusPlus14 && in checkArraySize() 3178 if (!SemaRef.getLangOpts().CPlusPlus14 && Auto && in GetDeclSpecTypeForDeclarator() 3257 if (!SemaRef.getLangOpts().CPlusPlus14 || !IsCXXAutoType) in GetDeclSpecTypeForDeclarator() 3262 if (!SemaRef.getLangOpts().CPlusPlus14 || !IsCXXAutoType) in GetDeclSpecTypeForDeclarator() 4824 if (!S.getLangOpts().CPlusPlus14) { in GetFullTypeForDeclarator()
|
H A D | SemaOverload.cpp | 1402 if (!SemaRef.getLangOpts().CPlusPlus14 && in IsOverloadOrOverrideImpl() 6614 if (getLangOpts().CPlusPlus14) in PerformContextualImplicitConversion() 6621 assert((!ConvTemplate || getLangOpts().CPlusPlus14) && in PerformContextualImplicitConversion() 6634 if (!ConvTemplate && getLangOpts().CPlusPlus14) { in PerformContextualImplicitConversion() 6646 if (getLangOpts().CPlusPlus14) { in PerformContextualImplicitConversion() 7851 if (getLangOpts().CPlusPlus14 && ConvType->isUndeducedType()) { in AddConversionCandidate() 12728 if (S.getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && in completeFunctionType()
|
H A D | SemaTemplateDeduction.cpp | 4013 if (S.getLangOpts().CPlusPlus14 && Fn->getReturnType()->isUndeducedType() && in GetTypeOfFunction() 4671 if (getLangOpts().CPlusPlus14 && in DeduceTemplateArguments()
|
H A D | SemaDecl.cpp | 7509 getLangOpts().CPlusPlus14 in ActOnVariableDeclarator() 9941 if (getLangOpts().CPlusPlus14 && in ActOnFunctionDeclarator() 11894 if (getLangOpts().CPlusPlus14 && in CheckFunctionDeclaration() 11914 if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() && in CheckFunctionDeclaration() 15826 if (getLangOpts().CPlusPlus14) { in ActOnFinishFunctionBody()
|
H A D | SemaExprCXX.cpp | 1942 if (getLangOpts().CPlusPlus14) { in ActOnCXXNew() 2187 if (getLangOpts().CPlusPlus14) { in BuildCXXNew()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 1277 if (!LangOpts.CPlusPlus14) in isValidUDSuffix() 1392 if (LangOpts.CPlusPlus14) in ParseNumberStartingWithZero()
|
H A D | Lexer.cpp | 2071 if (C == '\'' && (LangOpts.CPlusPlus14 || LangOpts.C23)) { in LexNumericConstant() 2135 else if (IsStringLiteral && LangOpts.CPlusPlus14) { in LexUDSuffix()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.cpp | 2108 if (!Ctx.getLangOpts().CPlusPlus14) in VisitCompoundAssignOperator() 4826 if (!Ctx.getLangOpts().CPlusPlus14) in VisitUnaryOperator() 4849 if (!Ctx.getLangOpts().CPlusPlus14) in VisitUnaryOperator() 4872 if (!Ctx.getLangOpts().CPlusPlus14) in VisitUnaryOperator() 4921 if (!Ctx.getLangOpts().CPlusPlus14) in VisitUnaryOperator()
|
H A D | Interp.cpp | 438 if (S.getLangOpts().CPlusPlus14 && in CheckMutable()
|
H A D | Interp.h | 722 if (!S.getLangOpts().CPlusPlus14) in IncDecHelper()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionParser.cpp | 518 lang_opts.CPlusPlus14 = true; in ClangExpressionParser()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 3674 if (!Info.getLangOpts().CPlusPlus14) in mayAccessMutableMembers() 4098 if (Info.getLangOpts().CPlusPlus14 && LVal.Base == Info.EvaluatingDecl && in findCompleteObject() 4170 } else if (Info.getLangOpts().CPlusPlus14 && in findCompleteObject() 4313 if ((Frame && Info.getLangOpts().CPlusPlus14 && in findCompleteObject() 4421 if (!Info.getLangOpts().CPlusPlus14) { in handleAssignment() 4569 if (!Info.getLangOpts().CPlusPlus14) { in handleCompoundAssignment() 4715 if (!Info.getLangOpts().CPlusPlus14) { in handleIncDec() 8272 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) in VisitUnaryPostIncDec() 8896 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) in VisitUnaryPreIncDec() 8909 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) in VisitCompoundAssignOperator() [all …]
|
H A D | DeclCXX.cpp | 1156 if (!getASTContext().getLangOpts().CPlusPlus14) in addedMember()
|
H A D | Type.cpp | 2896 if (Ctx.getLangOpts().CPlusPlus14 && isVoidType()) in isLiteralType()
|