Lines Matching refs:ConstexprSpecKind
7183 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7186 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7192 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7204 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
8498 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
8508 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
8509 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
8513 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9218 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9219 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9229 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9233 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9234 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
9239 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
9247 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
11094 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()