reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/TreeTransform.h
 6950   StmtResult Init = getDerived().TransformStmt(S->getInit());
 6957     getSema().ActOnOpenMPLoopInitialization(S->getForLoc(), Init.get());
 6961       S->getForLoc(), S->getConditionVariable(), S->getCond(),
 6961       S->getForLoc(), S->getConditionVariable(), S->getCond(),
 6961       S->getForLoc(), S->getConditionVariable(), S->getCond(),
 6967   ExprResult Inc = getDerived().TransformExpr(S->getInc());
 6972   if (S->getInc() && !FullInc.get())
 6976   StmtResult Body = getDerived().TransformStmt(S->getBody());
 6981       Init.get() == S->getInit() &&
 6982       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
 6982       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
 6983       Inc.get() == S->getInc() &&
 6984       Body.get() == S->getBody())
 6985     return S;
 6987   return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(),
 6987   return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(),
 6989                                      S->getRParenLoc(), Body.get());