Lines Matching refs:ConstexprSpecKind
7250 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7253 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7259 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7270 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
8557 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
8567 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
8568 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
8572 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9277 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9278 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9288 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9292 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9293 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
9298 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
9306 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
11153 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()