Lines Matching refs:ConstexprSpecKind
7748 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7751 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7757 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7768 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
9084 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
9094 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
9095 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
9099 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9868 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9869 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9879 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9883 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9884 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
9889 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
9897 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
11974 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()