Home
last modified time | relevance | path

Searched refs:getForLoc (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h52 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
H A DStmtCXX.h202 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
H A DStmt.h2835 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc() function
2842 SourceLocation getBeginLoc() const { return getForLoc(); } in getBeginLoc()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1477 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromForStmt()
1519 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromCXXForRangeStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp291 Record.AddSourceLocation(S->getForLoc()); in VisitForStmt()
1550 Record.AddSourceLocation(S->getForLoc()); in VisitObjCForCollectionStmt()
1644 Record.AddSourceLocation(S->getForLoc()); in VisitCXXForRangeStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h7876 getSema().ActOnOpenMPLoopInitialization(S->getForLoc(), Init.get()); in TransformForStmt()
7880 S->getForLoc(), S->getConditionVariable(), S->getCond(), in TransformForStmt()
7906 return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(), in TransformForStmt()
8481 return getDerived().RebuildObjCForCollectionStmt(S->getForLoc(), in TransformObjCForCollectionStmt()
8592 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
8614 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
H A DSemaOpenMP.cpp9400 For ? For->getForLoc() : CXXFor->getForLoc()); in checkOpenMPIterationSpace()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp6918 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitForStmt()
7029 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitCXXForRangeStmt()
7047 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitObjCForCollectionStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1699 SourceLocation ForEachLoc = S->getForLoc(); in RewriteObjCForCollectionStmt()