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

References

tools/clang/include/clang/AST/Stmt.h
 2447   SourceLocation getBeginLoc() const { return getForLoc(); }
tools/clang/lib/AST/ASTImporter.cpp
 5920       S->getBody(), S->getForLoc(), S->getLParenLoc(), S->getRParenLoc());
tools/clang/lib/Sema/SemaOpenMP.cpp
 6589                                   For ? For->getForLoc() : CXXFor->getForLoc());
tools/clang/lib/Sema/TreeTransform.h
 6957     getSema().ActOnOpenMPLoopInitialization(S->getForLoc(), Init.get());
 6961       S->getForLoc(), S->getConditionVariable(), S->getCond(),
 6987   return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(),
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  216   Record.AddSourceLocation(S->getForLoc());
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertCheck.cpp
  525   auto Diag = diag(Loop->getForLoc(), "use range-based for loop instead");