Home
last modified time | relevance | path

Searched refs:CaseLoc (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/clang/lib/Parse/
DParseStmt.cpp713 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()
DParseExpr.cpp221 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument
226 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
/external/clang/lib/Parse/
DParseStmt.cpp661 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
731 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc, in ParseCaseStatement()
/external/llvm-project/clang/lib/Sema/
DSemaStmt.cpp440 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()
DTreeTransform.h1270 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1275 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/external/clang/lib/Sema/
DSemaStmt.cpp376 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()
DTreeTransform.h1124 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1129 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/external/llvm-project/clang/include/clang/Parse/
DParser.h1757 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/external/llvm-project/clang/include/clang/Sema/
DSema.h4504 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
4505 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,
/external/clang/include/clang/Sema/
DSema.h3383 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,