Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp850 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 DParseExpr.cpp252 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 DSemaStmt.cpp464 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 DTreeTransform.h1361 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 DParser.h1848 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10688 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
10689 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,