Searched refs:CaseLoc (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 794 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 811 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 828 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement() 853 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
|
| H A D | ParseExpr.cpp | 222 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument 227 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 458 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument 510 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument 519 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt() 529 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
|
| H A D | TreeTransform.h | 1317 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1322 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Parse/ |
| H A D | Parser.h | 1776 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 5059 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val); 5060 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
|