Searched refs:CaseLoc (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 850 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 867 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 884 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 909 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
H A D | ParseExpr.cpp | 252 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 257 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 464 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 516 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 525 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 536 Diag(CaseLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnCaseStmt() 542 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
H A D | TreeTransform.h | 1361 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1366 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 1848 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 10688 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 10689 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|