Searched refs:SwitchLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
H A DStmt.h917 SourceLocation SwitchLoc; member in class:clang::SwitchStmt
961 SourceLocation getSwitchLoc() const { return SwitchLoc; }
962 void setSwitchLoc(SourceLocation L) { SwitchLoc = L; }
966 SwitchLoc = SL;
987 SourceLocation getLocStart() const LLVM_READONLY { return SwitchLoc; }
/external/clang/lib/Parse/
H A DParseStmt.cpp1091 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'. local
1121 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1125 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1170 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
/external/clang/lib/Sema/
H A DSemaStmt.cpp570 Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond, argument
635 PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser);
645 CondResult = ActOnFinishFullExpr(Cond, SwitchLoc);
667 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, argument
673 SS->setBody(BodyStmt, SwitchLoc);
703 Diag(SwitchLoc, diag::warn_bool_switch_condition)
H A DTreeTransform.h1103 StmtResult RebuildSwitchStmtStart(SourceLocation SwitchLoc, argument
1105 return getSema().ActOnStartOfSwitchStmt(SwitchLoc, Cond,
1113 StmtResult RebuildSwitchStmtBody(SourceLocation SwitchLoc, argument
1115 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
/external/clang/include/clang/Sema/
H A DSema.h2826 StmtResult ActOnStartOfSwitchStmt(SourceLocation SwitchLoc,
2829 StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc,

Completed in 110 milliseconds