Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp838 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
855 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
872 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
897 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
H A DParseExpr.cpp233 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument
238 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp459 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument
511 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument
520 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt()
530 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
H A DTreeTransform.h1340 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1345 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1797 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5185 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
5186 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,