Home
last modified time | relevance | path

Searched refs:getCapturedDecl (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/AST/
DStmt.cpp1084 CapturedDecl *CapturedStmt::getCapturedDecl() { in getCapturedDecl() function in CapturedStmt
1087 const CapturedDecl *CapturedStmt::getCapturedDecl() const { in getCapturedDecl() function in CapturedStmt
DASTDumper.cpp1810 dumpDecl(Node->getCapturedDecl()); in VisitCapturedStmt()
DStmtPrinter.cpp452 PrintStmt(Node->getCapturedDecl()->getBody()); in VisitCapturedStmt()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp202 const CapturedDecl *CD = S.getCapturedDecl(); in GenerateOpenMPCapturedStmtFunction()
1197 *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); in emitCommonOMPParallelDirective()
2409 auto *I = CS->getCapturedDecl()->param_begin(); in EmitOMPTaskBasedDirective()
2497 CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(3))); in EmitOMPTaskBasedDirective()
2499 CGF.GetAddrOfLocalVar(CS->getCapturedDecl()->getParam(2))); in EmitOMPTaskBasedDirective()
3324 *CS->getCapturedDecl()->param_begin(), InnermostKind, CodeGen); in emitCommonOMPTeamsDirective()
3537 auto *I = CS->getCapturedDecl()->param_begin(); in EmitOMPTaskLoopBasedDirective()
DCGStmt.cpp2202 const CapturedDecl *CD = S.getCapturedDecl(); in GenerateCapturedStmtFunction()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3889 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPParallelDirective()
5163 auto *CD = cast<CapturedStmt>(AStmt)->getCapturedDecl(); in CheckOpenMPLoop()
5766 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPParallelForDirective()
5811 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPParallelForSimdDirective()
5908 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPTaskDirective()
6710 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPTargetDirective()
6763 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPTargetParallelDirective()
6784 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPTargetParallelForDirective()
6909 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPTeamsDirective()
7099 CS->getCapturedDecl()->setNothrow(); in ActOnOpenMPDistributeParallelForDirective()
[all …]
DTreeTransform.h11914 CapturedDecl *CD = S->getCapturedDecl(); in TransformCapturedStmt()
/external/clang/include/clang/AST/
DStmt.h2110 CapturedDecl *getCapturedDecl();
2111 const CapturedDecl *getCapturedDecl() const;
DRecursiveASTVisitor.h2381 DEF_TRAVERSE_STMT(CapturedStmt, { TRY_TO(TraverseDecl(S->getCapturedDecl())); })
/external/clang/lib/Serialization/
DASTWriterStmt.cpp329 Record.AddDeclRef(S->getCapturedDecl()); in VisitCapturedStmt()
DASTReaderStmt.cpp423 S->getCapturedDecl()->setBody(S->getCapturedStmt()); in VisitCapturedStmt()