HomeSort by relevance Sort by last modified time
    Searched refs:CaseLoc (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/AST/
Stmt.h 667 SourceLocation CaseLoc;
671 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc,
677 CaseLoc = caseLoc;
685 SourceLocation getCaseLoc() const { return CaseLoc; }
686 void setCaseLoc(SourceLocation L) { CaseLoc = L; }
715 return SourceRange(CaseLoc, CS->getSubStmt()->getLocEnd());
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 289 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
295 Diag(CaseLoc, diag::err_case_not_in_switch);
316 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 538 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() :
591 Actions.ActOnCaseStmt(CaseLoc, LHS.get(), DotDotDotLoc,
    [all...]