Searched refs:getCaptureKind (Results 1 - 15 of 15) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLambdaCapture.h78 LambdaCaptureKind getCaptureKind() const;
H A DStmt.h3422 VariableCaptureKind getCaptureKind() const;
3429 bool capturesThis() const { return getCaptureKind() == VCK_This; }
3432 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; }
3436 return getCaptureKind() == VCK_ByCopy;
3442 return getCaptureKind() == VCK_VLAType;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp1768 ID.AddInteger(C->getCaptureKind());
1769 switch (C->getCaptureKind()) {
H A DStmt.cpp1197 CapturedStmt::Capture::getCaptureKind() const { function in class:CapturedStmt::Capture
H A DStmtPrinter.cpp1934 switch (C->getCaptureKind()) {
H A DExprCXX.cpp1163 LambdaCaptureKind LambdaCapture::getCaptureKind() const { function in class:LambdaCapture
H A DASTImporter.cpp982 *LocationOrErr, From.isImplicit(), From.getCaptureKind(), Var,
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp343 if (((Attr->getCaptureKind() != OMPC_map) &&
345 static_cast<OpenMPClauseKind>(Attr->getCaptureKind()))) ||
346 ((Attr->getCaptureKind() == OMPC_map) &&
493 if (C.getCaptureKind() == LCK_ByRef) {
4467 if (Attr->getCaptureKind() == OMPC_map) {
4470 } else if (Attr->getCaptureKind() == OMPC_firstprivate &&
4895 if (LC.getCaptureKind() != LCK_ByRef)
H A DCGOpenMPRuntime.cpp7752 Cap.getCaptureKind() == CapturedStmt::VCK_ByRef)
8186 if (LC.getCaptureKind() != LCK_ByRef && !VD->getType()->isPointerType())
8191 if (LC.getCaptureKind() == LCK_ByRef) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp5639 Record->push_back(Capture.getCaptureKind());
5640 switch (Capture.getCaptureKind()) {
H A DASTWriterStmt.cpp530 Record.push_back(I.getCaptureKind());
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h11865 C->getCaptureKind() == LCK_StarThis);
11910 : C->getCaptureKind() == LCK_ByCopy
12023 C->getCaptureKind() == LCK_StarThis);
H A DSemaExprCXX.cpp1053 if (C.getCaptureKind() == LCK_StarThis)
H A DSemaDecl.cpp13617 const bool ByRef = C.getCaptureKind() == LCK_ByRef;
13626 C.getCaptureKind() == LCK_StarThis);
H A DSemaOpenMP.cpp3824 if (LC.getCaptureKind() == LCK_ByRef) {
3830 } else if (LC.getCaptureKind() == LCK_This) {

Completed in 525 milliseconds