Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp794 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
811 LHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
828 RHS = ParseCaseExpression(CaseLoc); in ParseCaseStatement()
853 Actions.ActOnCaseStmt(CaseLoc, LHS, DotDotDotLoc, RHS, ColonLoc); in ParseCaseStatement()
H A DParseExpr.cpp222 ExprResult Parser::ParseCaseExpression(SourceLocation CaseLoc) { in ParseCaseExpression() argument
227 return Actions.ActOnCaseExpr(CaseLoc, Res); in ParseCaseExpression()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp458 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) { in ActOnCaseExpr() argument
510 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal, in ActOnCaseStmt() argument
519 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt()
529 CaseLoc, DotDotDotLoc, ColonLoc); in ActOnCaseStmt()
H A DTreeTransform.h1317 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1322 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h1776 ExprResult ParseCaseExpression(SourceLocation CaseLoc);
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5059 ExprResult ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val);
5060 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHS,