Lines Matching defs:SelfArg
125 // Examine DeclExp to find SelfArg and FunArgs, which are used to substitute
130 Ctx.SelfArg = ME->getBase();
133 Ctx.SelfArg = CE->getImplicitObjectArgument();
141 Ctx.SelfArg = nullptr; // Will be set below
147 assert(!Ctx.SelfArg && "Ambiguous self argument");
150 Ctx.SelfArg = Self;
167 return translateAttrExpr(cast<const Expr *>(Ctx.SelfArg), nullptr);
346 if (Ctx && Ctx->SelfArg) {
347 if (const auto *SelfArg = dyn_cast<const Expr *>(Ctx->SelfArg))
348 return translate(SelfArg, Ctx->Prev);
350 return cast<til::SExpr *>(Ctx->SelfArg);
429 LRCallCtx.SelfArg = SelfE;