Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h52 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
H A DStmtCXX.h201 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
H A DStmt.h2551 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc() function
2558 SourceLocation getBeginLoc() const { return getForLoc(); } in getBeginLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1472 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromForStmt()
1514 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromCXXForRangeStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp224 Record.AddSourceLocation(S->getForLoc()); in VisitForStmt()
1453 Record.AddSourceLocation(S->getForLoc()); in VisitObjCForCollectionStmt()
1547 Record.AddSourceLocation(S->getForLoc()); in VisitCXXForRangeStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h7510 getSema().ActOnOpenMPLoopInitialization(S->getForLoc(), Init.get()); in TransformForStmt()
7514 S->getForLoc(), S->getConditionVariable(), S->getCond(), in TransformForStmt()
7540 return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(), in TransformForStmt()
8107 return getDerived().RebuildObjCForCollectionStmt(S->getForLoc(), in TransformObjCForCollectionStmt()
8218 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
8240 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
H A DSemaOpenMP.cpp8597 For ? For->getForLoc() : CXXFor->getForLoc()); in checkOpenMPIterationSpace()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp6422 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitForStmt()
6533 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitCXXForRangeStmt()
6551 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitObjCForCollectionStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1698 SourceLocation ForEachLoc = S->getForLoc(); in RewriteObjCForCollectionStmt()