HomeSort by: relevance | last modified time | path
    Searched refs:SwitchLoc (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1502 SourceLocation SwitchLoc = ConsumeToken(); // eat the 'switch'.
1534 if (ParseParenExprOrCondition(&InitStmt, Cond, SwitchLoc,
1539 SwitchLoc, LParen, InitStmt.get(), Cond, RParen);
1580 return Actions.ActOnFinishSwitchStmt(SwitchLoc, Switch.get(), Body.get());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 989 ExprResult Sema::CheckSwitchCondition(SourceLocation SwitchLoc, Expr *Cond) {
1038 PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser);
1053 StmtResult Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc,
1071 Diag(SwitchLoc, diag::warn_bool_switch_condition)
1177 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch,
1187 SS->setBody(BodyStmt, SwitchLoc);
TreeTransform.h 1335 StmtResult RebuildSwitchStmtStart(SourceLocation SwitchLoc,
1339 return getSema().ActOnStartOfSwitchStmt(SwitchLoc, LParenLoc, Init, Cond,
1347 StmtResult RebuildSwitchStmtBody(SourceLocation SwitchLoc,
1349 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 196 SourceLocation SwitchLoc;
2258 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; }
2259 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4670 StmtResult ActOnStartOfSwitchStmt(SourceLocation SwitchLoc,
4674 StmtResult ActOnFinishSwitchStmt(SourceLocation SwitchLoc,
11848 ExprResult CheckSwitchCondition(SourceLocation SwitchLoc, Expr *Cond);

Completed in 42 milliseconds