Home
last modified time | relevance | path

Searched refs:ConstexprSpecKind (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp616 const char *DeclSpec::getSpecifierName(ConstexprSpecKind C) { in getSpecifierName()
618 case ConstexprSpecKind::Unspecified: in getSpecifierName()
620 case ConstexprSpecKind::Constexpr: in getSpecifierName()
622 case ConstexprSpecKind::Consteval: in getSpecifierName()
624 case ConstexprSpecKind::Constinit: in getSpecifierName()
1129 bool DeclSpec::SetConstexprSpec(ConstexprSpecKind ConstexprKind, in SetConstexprSpec()
1132 if (getConstexprSpecifier() != ConstexprSpecKind::Unspecified) in SetConstexprSpec()
1385 getConstexprSpecifier() == ConstexprSpecKind::Constexpr) { in Finish()
1393 getConstexprSpecifier() == ConstexprSpecKind::Constexpr && in Finish()
1425 if (getConstexprSpecifier() == ConstexprSpecKind::Constexpr) in Finish()
[all …]
H A DSemaLambda.cpp991 /*isInline=*/true, ConstexprSpecKind::Unspecified, SourceLocation(), in CreateLambdaCallOperator()
1011 TypeSourceInfo *MethodTyInfo, ConstexprSpecKind ConstexprKind, in CompleteLambdaCallOperator()
1754 S.getLangOpts().CPlusPlus17 ? ConstexprSpecKind::Constexpr in addFunctionPointerConversion()
1755 : ConstexprSpecKind::Unspecified, in addFunctionPointerConversion()
1875 /*isInline=*/true, ExplicitSpecifier(), ConstexprSpecKind::Unspecified, in addBlockPointerConversion()
2244 ? ConstexprSpecKind::Constexpr in BuildLambdaExpr()
2245 : ConstexprSpecKind::Unspecified); in BuildLambdaExpr()
H A DHLSLExternalSemaSource.cpp172 ConstexprSpecKind::Unspecified); in addDefaultHandleConstructor()
251 MethodTy, TSInfo, SC_None, false, false, ConstexprSpecKind::Unspecified, in addArraySubscriptOperator()
H A DSemaDecl.cpp2297 ConstexprSpecKind ConstexprKind = ConstexprSpecKind::Unspecified; in CreateBuiltin()
2301 ConstexprKind = ConstexprSpecKind::Consteval; in CreateBuiltin()
7737 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7740 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7746 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7757 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
9142 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
9143 if (ConstexprKind == ConstexprSpecKind::Constinit || in CreateNewFunctionDecl()
9145 ConstexprKind == ConstexprSpecKind::Constexpr)) { in CreateNewFunctionDecl()
9154 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
[all …]
H A DSemaDeclCXX.cpp7762 ? ConstexprSpecKind::Consteval in CheckExplicitlyDefaultedSpecialMember()
7763 : ConstexprSpecKind::Constexpr) in CheckExplicitlyDefaultedSpecialMember()
7764 : ConstexprSpecKind::Unspecified); in CheckExplicitlyDefaultedSpecialMember()
9008 FD->setConstexprKind(ConstexprSpecKind::Constexpr); in CheckExplicitlyDefaultedComparison()
13857 Constexpr ? ConstexprSpecKind::Constexpr in DeclareImplicitDefaultConstructor()
13858 : ConstexprSpecKind::Unspecified); in DeclareImplicitDefaultConstructor()
13983 Constexpr ? BaseCtor->getConstexprKind() : ConstexprSpecKind::Unspecified, in findInheritingConstructor()
14143 Constexpr ? ConstexprSpecKind::Constexpr in DeclareImplicitDestructor()
14144 : ConstexprSpecKind::Unspecified); in DeclareImplicitDestructor()
14782 Constexpr ? ConstexprSpecKind in DeclareImplicitCopyAssignment()
[all...]
H A DSemaDeclAttr.cpp7249 FD->hasPrototype(), ConstexprSpecKind::Unspecified, in DeclClonePragmaWeak()
H A DSemaType.cpp5546 if (D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Constexpr && in GetFullTypeForDeclarator()
H A DSemaOpenMP.cpp7096 D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Constexpr; in ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope()
7098 D.getDeclSpec().getConstexprSpecifier() == ConstexprSpecKind::Consteval; in ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope()
H A DSemaExpr.cpp20563 /*ConstexprKind*/ ConstexprSpecKind::Unspecified); in resolveDecl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp81 isConstexprSpecified ? ConstexprSpecKind::Constexpr in AddFunDecl()
82 : ConstexprSpecKind::Unspecified); in AddFunDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h404 LLVM_PREFERRED_TYPE(ConstexprSpecKind) in LLVM_PREFERRED_TYPE() argument
494 static_cast<unsigned>(ConstexprSpecKind::Unspecified)), in DeclSpec()
608 static const char *getSpecifierName(ConstexprSpecKind C);
815 bool SetConstexprSpec(ConstexprSpecKind ConstexprKind, SourceLocation Loc,
829 ConstexprSpecKind getConstexprSpecifier() const { in getConstexprSpecifier()
830 return ConstexprSpecKind(ConstexprSpecifier); in getConstexprSpecifier()
835 return getConstexprSpecifier() != ConstexprSpecKind::Unspecified; in hasConstexprSpecifier()
839 ConstexprSpecifier = static_cast<unsigned>(ConstexprSpecKind::Unspecified); in ClearConstexprSpec()
H A DSema.h8764 TypeSourceInfo *MethodTyInfo, ConstexprSpecKind ConstexprKind,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h35 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit }; enum
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2089 bool isInlineSpecified, ConstexprSpecKind ConstexprKind,
2125 ConstexprSpecKind ConstexprKind = ConstexprSpecKind::Unspecified,
2138 bool hasWrittenPrototype, ConstexprSpecKind ConstexprKind,
2396 return getConstexprKind() != ConstexprSpecKind::Unspecified; in isConstexpr()
2398 void setConstexprKind(ConstexprSpecKind CSK) { in setConstexprKind()
2401 ConstexprSpecKind getConstexprKind() const { in getConstexprKind()
2402 return static_cast<ConstexprSpecKind>(FunctionDeclBits.ConstexprKind); in getConstexprKind()
2405 return getConstexprKind() == ConstexprSpecKind::Constexpr; in isConstexprSpecified()
2408 return getConstexprKind() == ConstexprSpecKind::Consteval; in isConsteval()
H A DDeclCXX.h1969 SC_None, false, false, ConstexprSpecKind::Unspecified), in CXXDeductionGuideDecl()
2075 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
2088 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
2555 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2598 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2818 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2833 ConstexprSpecKind ConstexprKind,
2873 ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind,
2892 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
H A DDeclBase.h1767 LLVM_PREFERRED_TYPE(ConstexprSpecKind)
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2315 bool isInline, ConstexprSpecKind ConstexprKind, in Create()
2328 ConstexprSpecKind::Unspecified, SourceLocation(), nullptr); in CreateDeserialized()
2725 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, in CXXConstructorDecl()
2752 ExplicitSpecifier(), false, false, false, ConstexprSpecKind::Unspecified, in CreateDeserialized()
2765 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, in Create()
2892 false, false, false, ConstexprSpecKind::Unspecified, nullptr); in CreateDeserialized()
2899 ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause) { in Create()
2924 false, false, ExplicitSpecifier(), ConstexprSpecKind::Unspecified, in CreateDeserialized()
2932 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, in Create()
H A DDecl.cpp3034 ConstexprSpecKind ConstexprKind, in FunctionDecl()
5393 ConstexprSpecKind ConstexprKind, in Create()
5405 nullptr, SC_None, false, false, ConstexprSpecKind::Unspecified, nullptr); in CreateDeserialized()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2154 ? ConstexprSpecKind::Constexpr in CreateFunctionDeclaration()
2155 : ConstexprSpecKind::Unspecified); in CreateFunctionDeclaration()
7768 cxx_dtor_decl->setConstexprKind(ConstexprSpecKind::Unspecified); in AddMethodToCXXRecordType()
7780 cxx_ctor_decl->setConstexprKind(ConstexprSpecKind::Unspecified); in AddMethodToCXXRecordType()
7806 cxx_method_decl->setConstexprKind(ConstexprSpecKind::Unspecified); in AddMethodToCXXRecordType()
7820 cxx_conversion_decl->setConstexprKind(ConstexprSpecKind::Unspecified); in AddMethodToCXXRecordType()
7833 cxx_method_decl->setConstexprKind(ConstexprSpecKind::Unspecified); in AddMethodToCXXRecordType()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp1304 DS.SetConstexprSpec(ConstexprSpecKind::Constexpr, ConstexprLoc, PrevSpec, in addConstexprToLambdaDeclSpecifier()
1318 DS.SetConstexprSpec(ConstexprSpecKind::Consteval, ConstevalLoc, PrevSpec, in addConstevalToLambdaDeclSpecifier()
H A DParseDecl.cpp4441 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Constexpr, Loc, in ParseDeclarationSpecifiers()
4445 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Consteval, Loc, in ParseDeclarationSpecifiers()
4449 isInvalid = DS.SetConstexprSpec(ConstexprSpecKind::Constinit, Loc, in ParseDeclarationSpecifiers()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1080 (ConstexprSpecKind)FunctionDeclBits.getNextBits(/*Width=*/2)); in VisitFunctionDecl()