|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/clang/include/clang/AST/LambdaCapture.h 78 LambdaCaptureKind getCaptureKind() const;
References
gen/tools/clang/include/clang/AST/StmtDataCollectors.inc 151 addData(C.getCaptureKind());
tools/clang/lib/AST/ASTImporter.cpp 931 *LocationOrErr, From.isImplicit(), From.getCaptureKind(), Var,
tools/clang/lib/AST/StmtPrinter.cpp 1922 switch (C->getCaptureKind()) {
tools/clang/lib/AST/StmtProfile.cpp 1709 ID.AddInteger(C->getCaptureKind());
1710 switch (C->getCaptureKind()) {
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp 8197 if (LC.getCaptureKind() != LCK_ByRef && !VD->getType()->isPointerType())
8202 if (LC.getCaptureKind() == LCK_ByRef) {
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp 490 if (C.getCaptureKind() == LCK_ByRef) {
4879 if (LC.getCaptureKind() != LCK_ByRef)
tools/clang/lib/Sema/SemaDecl.cpp13465 const bool ByRef = C.getCaptureKind() == LCK_ByRef;
13474 C.getCaptureKind() == LCK_StarThis);
tools/clang/lib/Sema/SemaExprCXX.cpp 1052 if (C.getCaptureKind() == LCK_StarThis)
tools/clang/lib/Sema/SemaOpenMP.cpp 3614 if (LC.getCaptureKind() == LCK_ByRef) {
3620 } else if (LC.getCaptureKind() == LCK_This) {
tools/clang/lib/Sema/TreeTransform.h11562 C->getCaptureKind() == LCK_StarThis);
11607 : C->getCaptureKind() == LCK_ByCopy
11720 C->getCaptureKind() == LCK_StarThis);
tools/clang/lib/Serialization/ASTWriter.cpp 6235 Record->push_back(Capture.getCaptureKind());
6236 switch (Capture.getCaptureKind()) {
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp 787 C->getCaptureKind() == LCK_ByCopy ? Usage::UK_CaptureByCopy