Lines Matching refs:args

122       var args = Array(startIndex + 1);
124 args[index] = arguments[index];
126 args[startIndex] = rest;
127 return func.apply(this, args);
283 _.invoke = restArgs(function(obj, method, args) { argument
287 return func == null ? func : func.apply(value, args);
729 var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) { argument
730 if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);
732 var result = sourceFunc.apply(self, args);
740 _.bind = restArgs(function(func, context, args) { argument
743 return executeBound(func, bound, context, this, args.concat(callArgs));
756 var args = Array(length);
758 args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];
760 while (position < arguments.length) args.push(arguments[position++]);
761 return executeBound(func, bound, this, this, args);
795 _.delay = restArgs(function(func, wait, args) { argument
797 return func.apply(null, args);
811 var timeout, context, args, result;
818 result = func.apply(context, args);
819 if (!timeout) context = args = null;
827 args = arguments;
834 result = func.apply(context, args);
835 if (!timeout) context = args = null;
845 timeout = context = args = null;
858 var later = function(context, args) { argument
860 if (args) result = func.apply(context, args);
863 var debounced = restArgs(function(args) { argument
868 if (callNow) result = func.apply(this, args);
870 timeout = _.delay(later, wait, this, args);
901 var args = arguments;
902 var start = args.length - 1;
905 var result = args[start].apply(this, arguments);
906 while (i--) result = args[i].call(this, result);
1571 var args = [this._wrapped];
1572 push.apply(args, arguments);
1573 return chainResult(this, func.apply(_, args));