Searched refs:SwitchLoc (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 1215 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'. local 1245 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false)) 1249 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar); 1290 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
|
/external/clang/include/clang/AST/ |
H A D | Stmt.h | 939 SourceLocation SwitchLoc; member in class:clang::SwitchStmt 985 SourceLocation getSwitchLoc() const { return SwitchLoc; } 986 void setSwitchLoc(SourceLocation L) { SwitchLoc = L; } 990 SwitchLoc = SL; 1007 SourceLocation getLocStart() const LLVM_READONLY { return SwitchLoc; }
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 583 Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, Expr *Cond, argument 648 PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser); 657 CondResult = ActOnFinishFullExpr(Cond, SwitchLoc); 729 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, argument 738 SS->setBody(BodyStmt, SwitchLoc); 767 Diag(SwitchLoc, diag::warn_bool_switch_condition)
|
H A D | TreeTransform.h | 1174 StmtResult RebuildSwitchStmtStart(SourceLocation SwitchLoc, argument 1176 return getSema().ActOnStartOfSwitchStmt(SwitchLoc, Cond, 1184 StmtResult RebuildSwitchStmtBody(SourceLocation SwitchLoc, argument 1186 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 3320 StmtResult ActOnStartOfSwitchStmt(SourceLocation SwitchLoc, 3323 StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc,
|
Completed in 148 milliseconds