Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtObjC.h52 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
HDStmtCXX.h202 SourceLocation getForLoc() const { return ForLoc; } in getForLoc() function
HDStmt.h2842 SourceLocation getForLoc() const { return ForStmtBits.ForLoc; } in getForLoc() function
2849 SourceLocation getBeginLoc() const { return getForLoc(); } in getBeginLoc()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
HDBuildTree.cpp1478 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromForStmt()
1520 Builder.markChildToken(S->getForLoc(), syntax::NodeRole::IntroducerKeyword); in WalkUpFromCXXForRangeStmt()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTWriterStmt.cpp291 Record.AddSourceLocation(S->getForLoc()); in VisitForStmt()
1560 Record.AddSourceLocation(S->getForLoc()); in VisitObjCForCollectionStmt()
1654 Record.AddSourceLocation(S->getForLoc()); in VisitCXXForRangeStmt()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDTreeTransform.h8170 getSema().OpenMP().ActOnOpenMPLoopInitialization(S->getForLoc(), in TransformForStmt()
8175 S->getForLoc(), S->getConditionVariable(), S->getCond(), in TransformForStmt()
8201 return getDerived().RebuildForStmt(S->getForLoc(), S->getLParenLoc(), in TransformForStmt()
8776 return getDerived().RebuildObjCForCollectionStmt(S->getForLoc(), in TransformObjCForCollectionStmt()
8905 S->getForLoc(), S->getCoawaitLoc(), Init.get(), S->getColonLoc(), in TransformCXXForRangeStmt()
8924 S->getForLoc(), S->getCoawaitLoc(), Init.get(), S->getColonLoc(), in TransformCXXForRangeStmt()
HDSemaOpenMP.cpp9205 For ? For->getForLoc() : CXXFor->getForLoc()); in checkOpenMPIterationSpace()
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDASTImporter.cpp7020 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitForStmt()
7131 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitCXXForRangeStmt()
7149 auto ToForLoc = importChecked(Err, S->getForLoc()); in VisitObjCForCollectionStmt()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
HDRewriteModernObjC.cpp1698 SourceLocation ForEachLoc = S->getForLoc(); in RewriteObjCForCollectionStmt()