HomeSort by: relevance | last modified time | path
    Searched refs:CapturingScopeInfo (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 653 class CapturingScopeInfo : public FunctionScopeInfo {
655 CapturingScopeInfo(const CapturingScopeInfo&) = default;
665 CapturingScopeInfo(DiagnosticsEngine &Diag, ImplicitCaptureStyle Style)
741 class BlockScopeInfo final : public CapturingScopeInfo {
754 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
767 class CapturedRegionScopeInfo final : public CapturingScopeInfo {
791 : CapturingScopeInfo(Diag, ImpCap_CapturedRegion),
819 public CapturingScopeInfo, public InventedTemplateParameterInfo {
902 : CapturingScopeInfo(Diag, ImpCap_None)
    [all...]
Sema.h 220 class CapturingScopeInfo;
6654 void deduceClosureReturnType(sema::CapturingScopeInfo &CSI);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp 226 bool CapturingScopeInfo::isVLATypeCaptured(const VariableArrayType *VAT) const {
SemaLambda.cpp 695 void Sema::deduceClosureReturnType(CapturingScopeInfo &CSI) {
1634 mapImplicitCaptureStyle(CapturingScopeInfo::ImplicitCaptureStyle ICS) {
1636 case CapturingScopeInfo::ImpCap_None:
1638 case CapturingScopeInfo::ImpCap_LambdaByval:
1640 case CapturingScopeInfo::ImpCap_CapturedRegion:
1641 case CapturingScopeInfo::ImpCap_LambdaByref:
1643 case CapturingScopeInfo::ImpCap_Block:
SemaExprCXX.cpp 1233 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval &&
1279 if (CapturingScopeInfo *CSI =
1280 dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) {
1297 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
1298 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval ||
1299 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block ||
1300 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion ||
1339 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]);
SemaExpr.cpp 4338 CapturingScopeInfo *CSI) {
4462 auto *CSI = dyn_cast<CapturingScopeInfo>(*I);
5603 auto *CSI = dyn_cast<CapturingScopeInfo>(*I);
17231 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
17277 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
17578 assert(LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None);
17721 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
17737 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
17814 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit)
    [all...]
SemaStmt.cpp 3597 CapturingScopeInfo *CurCap = cast<CapturingScopeInfo>(getCurFunction());
3946 if (isa<CapturingScopeInfo>(getCurFunction()))
Sema.cpp 2133 while (I != E && isa<CapturingScopeInfo>(*I) && !isa<LambdaScopeInfo>(*I))
SemaOpenMP.cpp 446 assert(!isa<CapturingScopeInfo>(CurFnScope));
459 if (!isa<CapturingScopeInfo>(FSI)) {
2204 if (!isa<CapturingScopeInfo>(FSI))
2233 if(!isa<CapturingScopeInfo>(FSI))
SemaDecl.cpp 14096 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
14098 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
14100 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;

Completed in 148 milliseconds