Lines Matching defs:MethodArgs
15185 Sema &S, SmallVectorImpl<Expr *> &MethodArgs, CXXMethodDecl *Method,
15191 MethodArgs.size() + std::max<unsigned>(Args.size(), NumParams);
15194 MethodArgs.reserve(MethodArgs.size() + NumArgsSlots);
15218 MethodArgs.push_back(Arg);
15293 SmallVector<Expr *, 2> MethodArgs;
15309 MethodArgs.push_back(Arg0.get());
15313 *this, MethodArgs, Method, ArgExpr, LLoc);
15332 Context, OO_Subscript, FnExpr.get(), MethodArgs, ResultTy, VK, RLoc,
15955 SmallVector<Expr *, 8> MethodArgs;
15956 MethodArgs.reserve(NumParams + 1);
15971 MethodArgs.push_back(Object.get());
15975 *this, MethodArgs, Method, Args, LParenLoc);
15984 MethodArgs.push_back(Arg.get());
15999 Context, OO_Call, NewFn.get(), MethodArgs, ResultTy, VK, RParenLoc,