Home
last modified time | relevance | path

Searched refs:ConstexprKind (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2061 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
2064 isInline, ConstexprKind, TrailingRequiresClause) { in FunctionDecl() argument
2074 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
2541 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2584 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2804 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2807 SC_None, UsesFPIntrin, isInline, ConstexprKind, in CXXMethodDecl() argument
2819 ConstexprSpecKind ConstexprKind,
2859 ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind,
2863 SC_None, UsesFPIntrin, isInline, ConstexprKind, in CXXMethodDecl() argument
[all …]
H A DDecl.h2103 bool isInlineSpecified, ConstexprSpecKind ConstexprKind,
2139 ConstexprSpecKind ConstexprKind = ConstexprSpecKind::Unspecified,
2144 hasWrittenPrototype, ConstexprKind,
2152 bool hasWrittenPrototype, ConstexprSpecKind ConstexprKind,
2411 FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(CSK); in setConstexprKind()
2414 return static_cast<ConstexprSpecKind>(FunctionDeclBits.ConstexprKind); in getConstexprKind()
H A DDeclBase.h1758 uint64_t ConstexprKind : 2;
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2274 bool isInline, ConstexprSpecKind ConstexprKind, in Create() argument
2279 isInline, ConstexprKind, EndLocation, TrailingRequiresClause); in Create()
2672 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, in CXXConstructorDecl() argument
2675 SC_None, UsesFPIntrin, isInline, ConstexprKind, in CXXConstructorDecl()
2712 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, in Create() argument
2722 isImplicitlyDeclared, ConstexprKind, Inherited, TrailingRequiresClause); in Create()
2846 ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause) { in Create() argument
2852 isImplicitlyDeclared, ConstexprKind, TrailingRequiresClause); in Create()
2879 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, in Create() argument
2886 ConstexprKind, EndLocation, TrailingRequiresClause); in Create()
H A DDecl.cpp3032 ConstexprSpecKind ConstexprKind, in FunctionDecl() argument
3055 FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(ConstexprKind); in FunctionDecl()
5331 ConstexprSpecKind ConstexprKind, in Create() argument
5335 isInlineSpecified, ConstexprKind, TrailingRequiresClause); in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp1112 bool DeclSpec::SetConstexprSpec(ConstexprSpecKind ConstexprKind, in SetConstexprSpec() argument
1116 return BadSpecifier(ConstexprKind, getConstexprSpecifier(), PrevSpec, in SetConstexprSpec()
1118 ConstexprSpecifier = static_cast<unsigned>(ConstexprKind); in SetConstexprSpec()
H A DSemaLambda.cpp969 TypeSourceInfo *MethodTyInfo, ConstexprSpecKind ConstexprKind, in CompleteLambdaCallOperator() argument
1003 Method->setConstexprKind(ConstexprKind); in CompleteLambdaCallOperator()
H A DSemaDecl.cpp9328 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
9331 << static_cast<int>(ConstexprKind); in CreateNewFunctionDecl()
9332 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9348 isInline, /*isImplicitlyDeclared=*/false, ConstexprKind, in CreateNewFunctionDecl()
9359 /*isImplicitlyDeclared=*/false, ConstexprKind, in CreateNewFunctionDecl()
9402 ExplicitSpecifier, ConstexprKind, SourceLocation(), in CreateNewFunctionDecl()
9432 ConstexprKind, SourceLocation(), TrailingRequiresClause); in CreateNewFunctionDecl()
10140 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
10150 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
10152 << static_cast<int>(ConstexprKind); in ActOnFunctionDeclarator()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h781 bool SetConstexprSpec(ConstexprSpecKind ConstexprKind, SourceLocation Loc,
H A DSema.h7265 TypeSourceInfo *MethodTyInfo, ConstexprSpecKind ConstexprKind,