Lines Matching refs:ConstexprSpecKind
7625 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7628 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7634 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7645 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
8946 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
8956 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
8957 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
8961 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9717 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9718 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9728 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9732 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9733 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
9738 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
9746 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
11645 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()