Lines Matching refs:thisArg

4003 	    function baseCallback(func, thisArg, argCount) {
4006 return (typeof thisArg != 'undefined' && isBindable(func))
4007 ? bindCallback(func, thisArg, argCount)
4992 result = action.func.apply(action.thisArg, args);
5082 function bindCallback(func, thisArg, argCount) {
5086 if (typeof thisArg == 'undefined') {
5091 return func.call(thisArg, value);
5094 return func.call(thisArg, value, index, collection);
5097 return func.call(thisArg, accumulator, value, index, collection);
5100 return func.call(thisArg, value, other, key, object, source);
5104 return func.apply(thisArg, arguments);
5212 return function(collection, iteratee, thisArg) {
5214 iteratee = getCallback(iteratee, thisArg, 3);
5278 function createBindWrapper(func, thisArg) {
5282 return (this instanceof wrapper ? Ctor : func).apply(thisArg, arguments);
5349 return function(collection, iteratee, thisArg) {
5350 if (thisArg && isIterateeCall(collection, iteratee, thisArg)) {
5358 iteratee = func(iteratee, thisArg, 3);
5389 …function createHybridWrapper(func, bitmask, thisArg, partials, holders, partialsRight, holdersRigh…
5435 …var result = createHybridWrapper(func, bitmask, thisArg, newPartials, newsHolders, newPartialsRigh…
5440 var thisBinding = isBind ? thisArg : this;
5490 function createPartialWrapper(func, bitmask, thisArg, partials) {
5509 return (this instanceof wrapper ? Ctor : func).apply(isBind ? thisArg : this, args);
5539 function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {
5557 …newData = [func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, ar…
5771 function getCallback(func, thisArg, argCount) {
5774 return argCount ? result(func, thisArg, argCount) : result;
6475 function dropRightWhile(array, predicate, thisArg) {
6480 predicate = getCallback(predicate, thisArg, 3);
6525 function dropWhile(array, predicate, thisArg) {
6531 predicate = getCallback(predicate, thisArg, 3);
6575 function findIndex(array, predicate, thisArg) {
6579 predicate = getCallback(predicate, thisArg, 3);
6627 function findLastIndex(array, predicate, thisArg) {
6629 predicate = getCallback(predicate, thisArg, 3);
7004 function remove(array, predicate, thisArg) {
7009 predicate = getCallback(predicate, thisArg, 3);
7110 function sortedIndex(array, value, iteratee, thisArg) {
7114 : binaryIndexBy(array, value, func(iteratee, thisArg, 1));
7138 function sortedLastIndex(array, value, iteratee, thisArg) {
7142 : binaryIndexBy(array, value, func(iteratee, thisArg, 1), true);
7258 function takeRightWhile(array, predicate, thisArg) {
7263 predicate = getCallback(predicate, thisArg, 3);
7308 function takeWhile(array, predicate, thisArg) {
7314 predicate = getCallback(predicate, thisArg, 3);
7390 function uniq(array, isSorted, iteratee, thisArg) {
7397 thisArg = iteratee;
7398 iteratee = isIterateeCall(array, isSorted, thisArg) ? null : isSorted;
7403 iteratee = func(iteratee, thisArg, 3);
7610 function tap(value, interceptor, thisArg) {
7611 interceptor.call(thisArg, value);
7633 function thru(value, interceptor, thisArg) {
7634 return interceptor.call(thisArg, value);
7892 function every(collection, predicate, thisArg) {
7894 if (typeof predicate != 'function' || typeof thisArg != 'undefined') {
7895 predicate = getCallback(predicate, thisArg, 3);
7940 function filter(collection, predicate, thisArg) {
7942 predicate = getCallback(predicate, thisArg, 3);
7987 function find(collection, predicate, thisArg) {
7989 var index = findIndex(collection, predicate, thisArg);
7992 predicate = getCallback(predicate, thisArg, 3);
8014 function findLast(collection, predicate, thisArg) {
8015 predicate = getCallback(predicate, thisArg, 3);
8073 function forEach(collection, iteratee, thisArg) {
8074 … return (typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection))
8076 : baseEach(collection, bindCallback(iteratee, thisArg, 3));
8096 function forEachRight(collection, iteratee, thisArg) {
8097 … return (typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection))
8099 : baseEachRight(collection, bindCallback(iteratee, thisArg, 3));
8253 function map(collection, iteratee, thisArg) {
8255 iteratee = getCallback(iteratee, thisArg, 3);
8452 function reduce(collection, iteratee, accumulator, thisArg) {
8454 …return func(collection, getCallback(iteratee, thisArg, 4), accumulator, arguments.length < 3, base…
8476 function reduceRight(collection, iteratee, accumulator, thisArg) {
8478 …return func(collection, getCallback(iteratee, thisArg, 4), accumulator, arguments.length < 3, base…
8519 function reject(collection, predicate, thisArg) {
8521 predicate = getCallback(predicate, thisArg, 3);
8655 function some(collection, predicate, thisArg) {
8657 if (typeof predicate != 'function' || typeof thisArg != 'undefined') {
8658 predicate = getCallback(predicate, thisArg, 3);
8704 function sortBy(collection, iteratee, thisArg) {
8709 if (thisArg && isIterateeCall(collection, iteratee, thisArg)) {
8712 iteratee = getCallback(iteratee, thisArg, 3);
8952 function bind(func, thisArg) {
8960 return createWrapper(func, bitmask, thisArg, partials, holders);
9214 thisArg,
9254 result = func.apply(thisArg, args);
9256 args = thisArg = null;
9271 result = func.apply(thisArg, args);
9273 args = thisArg = null;
9281 thisArg = this;
9298 result = func.apply(thisArg, args);
9312 result = func.apply(thisArg, args);
9315 args = thisArg = null;
9816 function clone(value, isDeep, customizer, thisArg) {
9819 thisArg = customizer;
9820 customizer = isIterateeCall(value, isDeep, thisArg) ? null : isDeep;
9823 customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 1);
9870 function cloneDeep(value, customizer, thisArg) {
9871 customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 1);
10062 function isEqual(value, other, customizer, thisArg) {
10063 customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 3);
10224 function isMatch(object, source, customizer, thisArg) {
10228 customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 3);
10661 function findKey(object, predicate, thisArg) {
10662 predicate = getCallback(predicate, thisArg, 3);
10705 function findLastKey(object, predicate, thisArg) {
10706 predicate = getCallback(predicate, thisArg, 3);
10737 function forIn(object, iteratee, thisArg) {
10738 if (typeof iteratee != 'function' || typeof thisArg != 'undefined') {
10739 iteratee = bindCallback(iteratee, thisArg, 3);
10769 function forInRight(object, iteratee, thisArg) {
10770 iteratee = bindCallback(iteratee, thisArg, 3);
10794 function forOwn(object, iteratee, thisArg) {
10795 if (typeof iteratee != 'function' || typeof thisArg != 'undefined') {
10796 iteratee = bindCallback(iteratee, thisArg, 3);
10819 function forOwnRight(object, iteratee, thisArg) {
10820 iteratee = bindCallback(iteratee, thisArg, 3);
11040 function mapValues(object, iteratee, thisArg) {
11042 iteratee = getCallback(iteratee, thisArg, 3);
11126 function omit(object, predicate, thisArg) {
11134 predicate = bindCallback(predicate, thisArg, 3);
11193 function pick(object, predicate, thisArg) {
11198 ? pickByCallback(object, bindCallback(predicate, thisArg, 3))
11271 function transform(object, iteratee, accumulator, thisArg) {
11273 iteratee = getCallback(iteratee, thisArg, 4);
12346 function callback(func, thisArg, guard) {
12347 if (guard && isIterateeCall(func, thisArg, guard)) {
12348 thisArg = null;
12352 : baseCallback(func, thisArg);
12673 function times(n, iteratee, thisArg) {
12684 iteratee = bindCallback(iteratee, thisArg, 1);
12983 LazyWrapper.prototype[methodName] = function(iteratee, thisArg) {
12989 iteratees.push({ 'iteratee': getCallback(iteratee, thisArg, 3), 'type': index });
13017 LazyWrapper.prototype[methodName + 'RightWhile'] = function(predicate, thisArg) {
13018 return this.reverse()[whileName](predicate, thisArg).reverse();
13050 LazyWrapper.prototype.dropWhile = function(iteratee, thisArg) {
13055 iteratee = getCallback(iteratee, thisArg, 3);
13063 LazyWrapper.prototype.reject = function(iteratee, thisArg) {
13064 iteratee = getCallback(iteratee, thisArg, 3);