| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | LangStandard.h | 61 CPlusPlus26 = (1 << 12), enumerator 131 bool isCPlusPlus26() const { return Flags & CPlusPlus26; } in isCPlusPlus26()
|
| H A D | LangStandards.def | 181 CPlusPlus20 | CPlusPlus23 | CPlusPlus26 | Digraphs | HexFloat) 187 CPlusPlus20 | CPlusPlus23 | CPlusPlus26 | Digraphs | HexFloat | GNUMode)
|
| H A D | LangOptions.def | 58 LANGOPT(CPlusPlus26 , 1, 0, NotCompatible, "C++26")
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | OSTargets.cpp | 230 if (Opts.CPlusPlus26) in addVisualCDefines()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | LangOptions.cpp | 124 Opts.CPlusPlus26 = Std.isCPlusPlus26(); in setLangDefaults()
|
| H A D | Module.cpp | 107 .Case("cplusplus26", LangOpts.CPlusPlus26) in hasFeature()
|
| H A D | DiagnosticIDs.cpp | 807 if (LangOpts.CPlusPlus26) in getCXXCompatDiagId()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Interp.cpp | 1852 if (S.getLangOpts().CPlusPlus26 || S.Current->isStdFunction()) in InvalidNewDeleteExpr() 1863 } else if (!S.getLangOpts().CPlusPlus26 && in InvalidNewDeleteExpr() 1866 if (!S.getLangOpts().CPlusPlus26) { in InvalidNewDeleteExpr()
|
| H A D | Interp.h | 2573 if (S.getLangOpts().CPlusPlus26 && in PtrPtrCast() 2579 << E->getSubExpr()->getType() << S.getLangOpts().CPlusPlus26 in PtrPtrCast() 2581 } else if (!S.getLangOpts().CPlusPlus26) { in PtrPtrCast()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 476 if (LangOpts.CPlusPlus26) in InitializeStandardPredefinedMacros() 671 Builder.defineMacro("__cpp_constexpr", LangOpts.CPlusPlus26 ? "202406L" in InitializeCPlusPlusFeatureTestMacros()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 2046 Features.CPlusPlus26 in init() 2051 if (Features.CPlusPlus26) in init()
|
| H A D | Lexer.cpp | 2287 Diag(Pos, LangOpts.CPlusPlus26 in LexRawStringLiteral()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 484 FE && S.getLangOpts().CPlusPlus26 && in calculateConstraintSatisfaction() 1640 FE && S.getLangOpts().CPlusPlus26 && in fromConstraintExpr()
|
| H A D | SemaTemplateVariadic.cpp | 1211 Diag(Res.get()->getBeginLoc(), getLangOpts().CPlusPlus26 in ActOnPackIndexingExpr()
|
| H A D | CheckExprLifetime.cpp | 1529 if (SemaRef.getLangOpts().CPlusPlus26 && in checkExprLifetimeImpl()
|
| H A D | SemaExprCXX.cpp | 4038 Diag(StartLoc, LangOpts.CPlusPlus26 ? diag::err_delete_incomplete in ActOnCXXDelete() 4040 << (LangOpts.CPlusPlus26 ? Pointee : Type) in ActOnCXXDelete() 4051 LangOpts.CPlusPlus26 in ActOnCXXDelete()
|
| H A D | SemaExpr.cpp | 1518 Diag(Loc, getLangOpts().CPlusPlus26 ? diag::err_arith_conv_enum_float_cxx26 in checkEnumArithmeticConversions() 1529 if (getLangOpts().CPlusPlus26) in checkEnumArithmeticConversions() 12073 auto DiagID = S.getLangOpts().CPlusPlus26 in diagnoseTautologicalComparison()
|
| H A D | SemaDeclCXX.cpp | 715 Diag(Loc, getLangOpts().CPlusPlus26 in DiagPlaceholderVariableDefinition() 750 DiagID = getLangOpts().CPlusPlus26 in ActOnDecompositionDeclarator()
|
| H A D | SemaType.cpp | 9782 Diag(Loc, getLangOpts().CPlusPlus26 ? diag::warn_cxx23_pack_indexing in ActOnPackIndexingType()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 995 getLangOpts().CPlusPlus26 in ParseStaticAssertDeclaration() 2507 Diag(Tok.getLocation(), getLangOpts().CPlusPlus26 in ParseCXX2CTriviallyRelocatableSpecifier() 2533 Diag(Tok.getLocation(), getLangOpts().CPlusPlus26 in ParseCXX2CReplaceableSpecifier() 2915 Diag(Tok.getLocation(), getLangOpts().CPlusPlus26 in ParseCXXClassMemberDeclaration()
|
| H A D | ParseCXXInlineMethods.cpp | 35 Diag(Message->getBeginLoc(), getLangOpts().CPlusPlus26 in ParseCXXDeletedFunctionMessage()
|
| H A D | ParseDecl.cpp | 6950 Diag(Tok, getLangOpts().CPlusPlus26 ? diag::warn_cxx23_compat_binding_pack in ParseDecompositionDeclarator() 6981 Diag(Tok, getLangOpts().CPlusPlus26 in ParseDecompositionDeclarator() 7667 if (getLangOpts().CPlusPlus26) { in ParseParameterDeclarationClause()
|
| H A D | ParseExprCXX.cpp | 214 if (!Tok.is(tok::coloncolon) && !getLangOpts().CPlusPlus26 && in ParseOptionalCXXScopeSpecifier()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 9707 Info.getLangOpts().CPlusPlus26)) { in VisitCastExpr() 9714 << SubExpr->getType() << Info.getLangOpts().CPlusPlus26 in VisitCastExpr() 10342 if (Info.CurrentCall->isStdFunction() || Info.getLangOpts().CPlusPlus26 || in VisitCXXNewExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 628 defvar cpp26 = LangOpts<"CPlusPlus26">;
|