Home
last modified time | relevance | path

Searched refs:isCopyCapture (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp1940 if (Cap.isCopyCapture()) in BuildCaptureInit()
2004 if (!From.isCopyCapture()) in CaptureHasSideEffects()
2229 From.isCopyCapture() ? LCK_StarThis : LCK_This); in BuildLambdaExpr()
2236 From.isCopyCapture() ? LCK_ByCopy : LCK_ByRef; in BuildLambdaExpr()
H A DSemaExprCXX.cpp1153 if (C.isCopyCapture()) { in adjustCVQualifiersForCXXThisWithinLambda()
1458 if (!LSI->getCXXThisCapture().isCopyCapture()) in MarkThisReferenced()
H A DSemaExpr.cpp16546 if (getLangOpts().CPlusPlus && Cap.isCopyCapture()) { in ActOnBlockStmtExpr()
18707 if (Cap.isCopyCapture() && !DeclRefType->isFunctionType() && in isVariableAlreadyCapturedInScopeInfo()
19109 ? LSI->getCXXThisCapture().isCopyCapture() in buildLambdaCaptureFixit()
19114 return !C.isThisCapture() && !C.isInitCapture() && C.isCopyCapture(); in buildLambdaCaptureFixit()
20176 if (C->isCopyCapture()) in FixDependencyOfIdExpressionsInLambdaWithDependentObjectParameter()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h654 bool isCopyCapture() const { return Kind == Cap_ByCopy; } in isCopyCapture() function