Home | History | Annotate | Download | only in Sema

Lines Matching refs:ThisTy

657   QualType ThisTy = CXXThisTypeOverride;
660 ThisTy = method->getThisType(Context);
663 return ThisTy;
733 QualType ThisTy = getCurrentThisType();
738 = FieldDecl::Create(Context, Lambda, Loc, Loc, 0, ThisTy,
739 Context.getTrivialTypeSourceInfo(ThisTy, Loc),
744 ThisExpr = new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit=*/true);
747 CSI->addThisCapture(isNested, Loc, ThisTy, ThisExpr);
756 QualType ThisTy = getCurrentThisType();
757 if (ThisTy.isNull()) return Diag(Loc, diag::err_invalid_this_use);
760 return Owned(new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit=*/false));