Lines Matching refs:ConstexprSpecKind
2297 ConstexprSpecKind ConstexprKind = ConstexprSpecKind::Unspecified; in CreateBuiltin()
2301 ConstexprKind = ConstexprSpecKind::Consteval; in CreateBuiltin()
7737 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7740 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7746 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7757 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
9142 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
9143 if (ConstexprKind == ConstexprSpecKind::Constinit || in CreateNewFunctionDecl()
9145 ConstexprKind == ConstexprSpecKind::Constexpr)) { in CreateNewFunctionDecl()
9154 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9182 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
9979 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9980 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9990 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9994 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9995 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
10000 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
10008 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
12239 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()