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

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 4287   const Expr *const Condition = Node.getCond();
tools/clang/lib/AST/ExprConstant.cpp
 4728       if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
 4729                                          FS->getCond(), Continue))
tools/clang/lib/CodeGen/CGStmt.cpp
  894   if (S.getCond()) {
  912     llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
  915         createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  541     if (S->getCond()) {
  542       CountMap[S->getCond()] = CondCount;
  543       Visit(S->getCond());
tools/clang/lib/CodeGen/CoverageMappingGen.cpp
 1030     if (const Expr *Cond = S->getCond()) {
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  918       Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  248   const Expr *condition = FS->getCond();
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  380     if (!isIdenticalStmt(Ctx, ForStmt1->getCond(), ForStmt2->getCond(),
  380     if (!isIdenticalStmt(Ctx, ForStmt1->getCond(), ForStmt2->getCond(),
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 1364       return cast<ForStmt>(S)->getCond() == Cond;
tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  350         HandleBranch(cast<ForStmt>(Term)->getCond(), Term, B, Pred);
tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
   33     return cast<ForStmt>(LoopStmt)->getCond();
tools/clang/tools/extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp
   85            (ForLoop->getCond() &&
   86             ExprMutationAnalyzer(*ForLoop->getCond(), *Context).isMutated(Var));
tools/clang/tools/libclang/CIndex.cpp
 2613   AddStmt(FS->getCond());