Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp676 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
693 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
710 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
735 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
H A DParseExpr.cpp220 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument
225 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp395 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument
446 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument
455 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt()
465 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
H A DTreeTransform.h1204 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1209 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1593 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3744 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
3745 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,