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

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 1850   const Stmt *const Increment = Node.getInc();
tools/clang/lib/AST/ExprConstant.cpp
 4554       if (FS->getInc()) {
 4556         if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy())
 4741       if (FS->getInc()) {
 4743         if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy())
tools/clang/lib/Analysis/ReachableCode.cpp
  637         const Expr *Inc = FS->getInc();
tools/clang/lib/CodeGen/CGStmt.cpp
  885   if (S.getInc())
  937   if (S.getInc()) {
  939     EmitStmt(S.getInc());
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  532     if (S->getInc()) {
  534       CountMap[S->getInc()] = IncCount;
  535       Visit(S->getInc());
tools/clang/lib/CodeGen/CoverageMappingGen.cpp
 1009     if (S->getInc())
 1021     if (const Stmt *Inc = S->getInc()) {
tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  254   const Expr *increment = FS->getInc();
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  383     if (!isIdenticalStmt(Ctx, ForStmt1->getInc(), ForStmt2->getInc(),
  383     if (!isIdenticalStmt(Ctx, ForStmt1->getInc(), ForStmt2->getInc(),
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 1055       if (isContainedByStmt(PM, FS->getInc(), S))
 1396     return FS->getInc() == S || FS->getInit() == S;
tools/clang/tools/extra/clang-tidy/bugprone/InfiniteLoopCheck.cpp
   79     return (ForLoop->getInc() &&
   80             ExprMutationAnalyzer(*ForLoop->getInc(), *Context)
tools/clang/tools/extra/clang-tidy/cert/FloatLoopCounter.cpp
   28   diag(FS->getInc()->getExprLoc(), "loop induction expression should not have "
tools/clang/tools/libclang/CIndex.cpp
 2612   AddStmt(FS->getInc());