Home | History | Annotate | Download | only in Sema

Lines Matching refs:ThisTy

751     QualType ThisTy = getCurrentThisType();
752 if (ThisTy.isNull()) {
761 = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/ true);
763 baseQuals = ThisTy->castAs<PointerType>()->getPointeeType().getQualifiers();
1619 QualType ThisTy = getCurrentThisType();
1620 assert(!ThisTy.isNull() && "didn't correctly pre-flight capture of 'this'");
1628 baseExpr = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/true);
1631 return BuildMemberReferenceExpr(baseExpr, ThisTy,