Lines Matching refs:ConstexprSpecKind
7156 case ConstexprSpecKind::Unspecified: in ActOnVariableDeclarator()
7159 case ConstexprSpecKind::Consteval: in ActOnVariableDeclarator()
7165 case ConstexprSpecKind::Constexpr: in ActOnVariableDeclarator()
7177 case ConstexprSpecKind::Constinit: in ActOnVariableDeclarator()
8437 ConstexprSpecKind::Unspecified, in CreateNewFunctionDecl()
8447 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in CreateNewFunctionDecl()
8448 if (ConstexprKind == ConstexprSpecKind::Constinit) { in CreateNewFunctionDecl()
8452 ConstexprKind = ConstexprSpecKind::Unspecified; in CreateNewFunctionDecl()
9131 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); in ActOnFunctionDeclarator()
9132 if (ConstexprKind != ConstexprSpecKind::Unspecified) { in ActOnFunctionDeclarator()
9142 ConstexprKind == ConstexprSpecKind::Consteval)) { in ActOnFunctionDeclarator()
9146 ? ConstexprSpecKind::Unspecified in ActOnFunctionDeclarator()
9147 : ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
9152 if (ConstexprKind == ConstexprSpecKind::Consteval && in ActOnFunctionDeclarator()
9160 NewFD->setConstexprKind(ConstexprSpecKind::Constexpr); in ActOnFunctionDeclarator()
11019 FD->setConstexprKind(ConstexprSpecKind::Unspecified); in CheckMain()