/external/llvm-project/clang/include/clang/AST/ |
D | LambdaCapture.h | 78 LambdaCaptureKind getCaptureKind() const;
|
D | StmtDataCollectors.td | 201 addData(C.getCaptureKind());
|
D | Stmt.h | 3498 VariableCaptureKind getCaptureKind() const; 3505 bool capturesThis() const { return getCaptureKind() == VCK_This; } in capturesThis() 3508 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; } in capturesVariable() 3512 return getCaptureKind() == VCK_ByCopy; in capturesVariableByCopy() 3518 return getCaptureKind() == VCK_VLAType; in capturesVariableArrayType()
|
/external/clang/include/clang/AST/ |
D | LambdaCapture.h | 79 LambdaCaptureKind getCaptureKind() const;
|
D | Stmt.h | 2036 VariableCaptureKind getCaptureKind() const; 2043 bool capturesThis() const { return getCaptureKind() == VCK_This; } in capturesThis() 2046 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; } in capturesVariable() 2050 return getCaptureKind() == VCK_ByCopy; in capturesVariableByCopy() 2056 return getCaptureKind() == VCK_VLAType; in capturesVariableArrayType()
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | LoopConvertUtils.cpp | 788 C->getCaptureKind() == LCK_ByCopy ? Usage::UK_CaptureByCopy in TraverseLambdaCapture()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntimeGPU.cpp | 253 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() 4107 if (Attr->getCaptureKind() == OMPC_map) { in translateParameter() 4110 } else if (Attr->getCaptureKind() == OMPC_firstprivate && in translateParameter() 4527 if (LC.getCaptureKind() != LCK_ByRef) in adjustTargetSpecificDataForLambdas()
|
D | CGOpenMPRuntime.cpp | 8105 Cap.getCaptureKind() == CapturedStmt::VCK_ByRef) in getMapModifiersForPrivateClauses() 8695 if (LC.getCaptureKind() != LCK_ByRef && !VD->getType()->isPointerType()) in generateInfoForLambdaCaptures() 8700 if (LC.getCaptureKind() == LCK_ByRef) { in generateInfoForLambdaCaptures()
|
/external/clang/lib/AST/ |
D | StmtProfile.cpp | 1334 ID.AddInteger(C->getCaptureKind()); in VisitLambdaExpr() 1335 switch (C->getCaptureKind()) { in VisitLambdaExpr()
|
D | Stmt.cpp | 987 CapturedStmt::Capture::getCaptureKind() const { in getCaptureKind() function in CapturedStmt::Capture
|
D | ExprCXX.cpp | 842 LambdaCaptureKind LambdaCapture::getCaptureKind() const { in getCaptureKind() function in LambdaCapture
|
D | StmtPrinter.cpp | 2068 switch (C->getCaptureKind()) { in VisitLambdaExpr()
|
D | Expr.cpp | 3022 if (I->getCaptureKind() == LCK_ByCopy) in HasSideEffects()
|
/external/llvm-project/clang/lib/AST/ |
D | StmtProfile.cpp | 1855 ID.AddInteger(C->getCaptureKind()); in VisitLambdaExpr() 1856 switch (C->getCaptureKind()) { in VisitLambdaExpr()
|
D | Stmt.cpp | 1285 CapturedStmt::Capture::getCaptureKind() const { in getCaptureKind() function in CapturedStmt::Capture
|
D | ExprCXX.cpp | 1113 LambdaCaptureKind LambdaCapture::getCaptureKind() const { in getCaptureKind() function in LambdaCapture
|
D | StmtPrinter.cpp | 1986 switch (C->getCaptureKind()) { in VisitLambdaExpr()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 5548 Record->push_back(Capture.getCaptureKind()); in AddCXXDefinitionData() 5549 switch (Capture.getCaptureKind()) { in AddCXXDefinitionData()
|
D | ASTWriterStmt.cpp | 347 Record.push_back(I.getCaptureKind()); in VisitCapturedStmt()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriterStmt.cpp | 536 Record.push_back(I.getCaptureKind()); in VisitCapturedStmt()
|
D | ASTWriter.cpp | 5807 Record->push_back(Capture.getCaptureKind()); in AddCXXDefinitionData() 5808 switch (Capture.getCaptureKind()) { in AddCXXDefinitionData()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 12555 C->getCaptureKind() == LCK_StarThis); in TransformLambdaExpr() 12600 : C->getCaptureKind() == LCK_ByCopy in TransformLambdaExpr() 12713 C->getCaptureKind() == LCK_StarThis); in SkipLambdaBody()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 10264 C->getCaptureKind() == LCK_StarThis); in TransformLambdaExpr() 10300 : C->getCaptureKind() == LCK_ByCopy in TransformLambdaExpr()
|
D | SemaExprCXX.cpp | 932 if (C.getCaptureKind() == LCK_StarThis) in adjustCVQualifiersForCXXThisWithinLambda()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 3407 llvm::omp::Clause getCaptureKind() const {
|