Searched refs:CaseLoc (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 676 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 693 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 710 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 735 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
| H A D | ParseExpr.cpp | 220 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 225 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 395 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 446 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 455 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 465 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
| H A D | TreeTransform.h | 1204 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1209 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/ |
| H A D | Parser.h | 1593 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 3744 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 3745 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|