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.cpp784 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
801 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
826 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
853 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
H A DParseExpr.cpp173 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument
182 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp495 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument
542 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument
551 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt()
562 Diag(CaseLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnCaseStmt()
568 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
H A DTreeTransform.h1355 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1360 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3734 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10903 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
10904 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,