Home
last modified time | relevance | path

Searched refs:getCaptureKind (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DLambdaCapture.h78 LambdaCaptureKind getCaptureKind() const;
H A DStmtDataCollectors.td201 addData(C.getCaptureKind());
H A DStmt.h3502 VariableCaptureKind getCaptureKind() const;
3509 bool capturesThis() const { return getCaptureKind() == VCK_This; } in capturesThis()
3512 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; } in capturesVariable()
3516 return getCaptureKind() == VCK_ByCopy; in capturesVariableByCopy()
3522 return getCaptureKind() == VCK_VLAType; in capturesVariableArrayType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp253 if (((Attr->getCaptureKind() != OMPC_map) && in markAsEscaped()
254 !isOpenMPPrivate(Attr->getCaptureKind())) || in markAsEscaped()
255 ((Attr->getCaptureKind() == OMPC_map) && in markAsEscaped()
403 if (C.getCaptureKind() == LCK_ByRef) { in VisitLambdaExpr()
3934 if (Attr->getCaptureKind() == OMPC_map) { in translateParameter()
3937 } else if (Attr->getCaptureKind() == OMPC_firstprivate && in translateParameter()
4363 if (LC.getCaptureKind() != LCK_ByRef) in adjustTargetSpecificDataForLambdas()
H A DCGOpenMPRuntime.cpp8220 Cap.getCaptureKind() == CapturedStmt::VCK_ByRef) in getMapModifiersForPrivateClauses()
8817 if (LC.getCaptureKind() != LCK_ByRef && !VD->getType()->isPointerType()) in generateInfoForLambdaCaptures()
8822 if (LC.getCaptureKind() == LCK_ByRef) { in generateInfoForLambdaCaptures()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp1916 ID.AddInteger(C->getCaptureKind()); in VisitLambdaExpr()
1917 switch (C->getCaptureKind()) { in VisitLambdaExpr()
H A DStmt.cpp1286 CapturedStmt::Capture::getCaptureKind() const { in getCaptureKind() function in CapturedStmt::Capture
H A DExprCXX.cpp1113 LambdaCaptureKind LambdaCapture::getCaptureKind() const { in getCaptureKind() function in LambdaCapture
H A DStmtPrinter.cpp1972 switch (C->getCaptureKind()) { in VisitLambdaExpr()
H A DASTImporter.cpp972 *LocationOrErr, From.isImplicit(), From.getCaptureKind(), Var, in import()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp537 Record.push_back(I.getCaptureKind()); in VisitCapturedStmt()
H A DASTWriter.cpp5585 Record->push_back(Capture.getCaptureKind()); in AddCXXDefinitionData()
5586 switch (Capture.getCaptureKind()) { in AddCXXDefinitionData()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h12795 C->getCaptureKind() == LCK_StarThis); in TransformLambdaExpr()
12840 : C->getCaptureKind() == LCK_ByCopy in TransformLambdaExpr()
12953 C->getCaptureKind() == LCK_StarThis); in SkipLambdaBody()
H A DSemaExprCXX.cpp1140 if (C.getCaptureKind() == LCK_StarThis) in adjustCVQualifiersForCXXThisWithinLambda()
H A DSemaDecl.cpp14114 const bool ByRef = C.getCaptureKind() == LCK_ByRef; in RebuildLambdaScopeInfo()
14123 C.getCaptureKind() == LCK_StarThis); in RebuildLambdaScopeInfo()
H A DSemaInit.cpp7791 << (Elem.Capture->getCaptureKind() == LCK_ByRef) << VD in checkInitializerLifetime()
H A DSemaOpenMP.cpp4405 if (LC.getCaptureKind() == LCK_ByRef) { in tryCaptureOpenMPLambdas()
4411 } else if (LC.getCaptureKind() == LCK_This) { in tryCaptureOpenMPLambdas()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td3556 llvm::omp::Clause getCaptureKind() const {