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

References

tools/clang/lib/AST/ASTImporter.cpp
 5919       S->getInit(), S->getCond(), S->getConditionVariable(), S->getInc(),
tools/clang/lib/AST/ParentMap.cpp
  197       return DirectChild == cast<ForStmt>(P)->getCond();
tools/clang/lib/AST/StmtPrinter.cpp
  326     OS << (Node->getCond() ? "; " : ";");
  327   if (Node->getCond())
  328     PrintExpr(Node->getCond());
tools/clang/lib/Analysis/CFG.cpp
 3380     Expr *C = F->getCond();
 5202     if (Stmt *C = F->getCond())
 5911       E = cast<ForStmt>(Terminator)->getCond();
tools/clang/lib/Analysis/LiveVariables.cpp
  355       AddLiveStmt(val.liveStmts, LV.SSetFact, cast<ForStmt>(S)->getCond());
tools/clang/lib/Sema/SemaOpenMP.cpp
 6628     HasErrors |= ISC.checkAndSetCond(For ? For->getCond() : CXXFor->getCond());
 6639       DSA.getCurScope(), For ? For->getCond() : CXXFor->getCond(), Captures);
tools/clang/lib/Sema/TreeTransform.h
 6961       S->getForLoc(), S->getConditionVariable(), S->getCond(),
 6982       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  212   Record.AddStmt(S->getCond());