Searched defs:CaseLoc (Results 1 - 4 of 4) sorted by relevance

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

Completed in 302 milliseconds