Lines Matching refs:thisArg

471   function apply(func, thisArg, args) {  argument
473 case 0: return func.call(thisArg);
474 case 1: return func.call(thisArg, args[0]);
475 case 2: return func.call(thisArg, args[0], args[1]);
476 case 3: return func.call(thisArg, args[0], args[1], args[2]);
478 return func.apply(thisArg, args);
4368 return action.func.apply(action.thisArg, arrayPush([result], action.args));
4923 function createBind(func, bitmask, thisArg) { argument
4929 return fn.apply(isBind ? thisArg : this, arguments);
5144 …function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argP… argument
5174 func, bitmask, createHybrid, wrapper.placeholder, thisArg,
5178 var thisBinding = isBind ? thisArg : this,
5257 var thisArg = this;
5259 return apply(iteratee, thisArg, args);
5299 function createPartial(func, bitmask, thisArg, partials) { argument
5317 return apply(fn, isBind ? thisArg : this, args);
5381 …function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, a… argument
5395 func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,
5488 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
5511 func, bitmask, thisArg, partials, holders, partialsRight, holdersRight,
5520 thisArg = newData[2];
5531 var result = createBind(func, bitmask, thisArg);
5535 result = createPartial(func, bitmask, thisArg, partials);
10094 var bind = baseRest(function(func, thisArg, partials) {
10100 return createWrap(func, bitmask, thisArg, partials, holders);
10329 thisArg = lastThis;
10333 result = func.apply(thisArg, args);