Searched refs:CaseLoc (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 784 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 801 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 826 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 853 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
| H A D | ParseExpr.cpp | 173 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 182 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 495 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 542 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 551 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 562 Diag(CaseLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnCaseStmt() 568 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
| H A D | TreeTransform.h | 1355 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1360 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 3734 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 10903 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 10904 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|