Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp224 Record.AddSourceLocation(S->getForLoc()); in VisitForStmt()
1442 Record.AddSourceLocation(S->getForLoc()); in VisitObjCForCollectionStmt()
1536 Record.AddSourceLocation(S->getForLoc()); in VisitCXXForRangeStmt()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DLibASTMatchersTutorial.rst505 if (!FS || !Context->getSourceManager().isWrittenInMainFile(FS->getForLoc()))
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h7487 getSema().ActOnOpenMPLoopInitialization(S->getForLoc(), Init.get()); in TransformForStmt()
7491 S->getForLoc(), S->getConditionVariable(), S->getCond(), in TransformForStmt()
7517 return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(), in TransformForStmt()
8084 return getDerived().RebuildObjCForCollectionStmt(S->getForLoc(), in TransformObjCForCollectionStmt()
8195 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
8217 NewStmt = getDerived().RebuildCXXForRangeStmt(S->getForLoc(), in TransformCXXForRangeStmt()
H A DSemaOpenMP.cpp8591 For ? For->getForLoc() : CXXFor->getForLoc()); in checkOpenMPIterationSpace()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTImporter.cpp6293 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitForStmt()
6404 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitCXXForRangeStmt()
6422 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitObjCForCollectionStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1698 SourceLocation ForEachLoc = S->getForLoc(); in RewriteObjCForCollectionStmt()