Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h664 SourceLocation CaseLoc; variable
674 CaseLoc = caseLoc; in CaseStmt()
682 SourceLocation getCaseLoc() const { return CaseLoc; } in getCaseLoc()
683 void setCaseLoc(SourceLocation L) { CaseLoc = L; } in setCaseLoc()
712 return SourceRange(CaseLoc, CS->getSubStmt()->getLocEnd()); in getSourceRange()
/external/clang/lib/Parse/
DParseStmt.cpp482 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local
535 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc, in ParseCaseStatement()
/external/clang/lib/Sema/
DSemaStmt.cpp305 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal, in ActOnCaseStmt() argument
311 Diag(CaseLoc, diag::err_case_not_in_switch); in ActOnCaseStmt()
332 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc, in ActOnCaseStmt()
DTreeTransform.h1014 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument
1019 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
/external/clang/include/clang/Sema/
DSema.h2498 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,