Searched refs:CaseLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 664 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/ |
D | ParseStmt.cpp | 482 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement() local 535 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc, in ParseCaseStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 305 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()
|
D | TreeTransform.h | 1014 StmtResult RebuildCaseStmt(SourceLocation CaseLoc, in RebuildCaseStmt() argument 1019 return getSema().ActOnCaseStmt(CaseLoc, LHS, EllipsisLoc, RHS, in RebuildCaseStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2498 StmtResult ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
|