Searched refs:CaseLoc (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 838 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 855 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 872 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 897 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
| H A D | ParseExpr.cpp | 233 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 238 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 459 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 511 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 520 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 530 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
| H A D | TreeTransform.h | 1340 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1345 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1797 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 5185 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 5186 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|