Searched refs:CaseLoc (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 713 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 730 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 747 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 772 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
D | ParseExpr.cpp | 221 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 226 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 661 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 731 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc, in ParseCaseStatement()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 440 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 492 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 501 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 511 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
D | TreeTransform.h | 1270 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1275 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 376 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal, in ActOnCaseStmt() argument 382 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 432 CaseStmt(LHS.get(), RHS.get(), CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
D | TreeTransform.h | 1124 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1129 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
/external/llvm-project/clang/include/clang/Parse/ |
D | Parser.h | 1757 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4504 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 4505 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3383 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
|