Lines Matching refs:func

3105 	        var func = isNative(func = context.Float64Array) && func,
3106 result = new func(new ArrayBuffer(10), 0, 1) && func;
4003 function baseCallback(func, thisArg, argCount) {
4004 var type = typeof func;
4006 return (typeof thisArg != 'undefined' && isBindable(func))
4007 ? bindCallback(func, thisArg, argCount)
4008 : func;
4010 if (func == null) {
4015 ? baseMatches(func)
4016 : baseProperty(func + '');
4116 function baseDelay(func, wait, args, fromIndex) {
4117 if (!isFunction(func)) {
4120 return setTimeout(function() { func.apply(undefined, baseSlice(args, fromIndex)); }, wait);
4451 var func = isFunc ? methodName : (value != null && value[methodName]);
4452 result[++index] = func ? func.apply(value, args) : undefined;
4840 var baseSetData = !metaMap ? identity : function(func, data) {
4841 metaMap.set(func, data);
4842 return func;
4992 result = action.func.apply(action.thisArg, args);
5082 function bindCallback(func, thisArg, argCount) {
5083 if (typeof func != 'function') {
5087 return func;
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);
5278 function createBindWrapper(func, thisArg) {
5279 var Ctor = createCtorWrapper(func);
5282 return (this instanceof wrapper ? Ctor : func).apply(thisArg, arguments);
5353 var func = getCallback(),
5356 if (!(func === baseCallback && noIteratee)) {
5358 iteratee = func(iteratee, thisArg, 3);
5389 …function createHybridWrapper(func, bitmask, thisArg, partials, holders, partialsRight, holdersRigh…
5397 var Ctor = !isBindKey && createCtorWrapper(func),
5398 key = func;
5435 …var result = createHybridWrapper(func, bitmask, thisArg, newPartials, newsHolders, newPartialsRigh…
5442 func = thisBinding[key];
5450 …return (this instanceof wrapper ? (Ctor || createCtorWrapper(func)) : func).apply(thisBinding, arg…
5490 function createPartialWrapper(func, bitmask, thisArg, partials) {
5492 Ctor = createCtorWrapper(func);
5509 return (this instanceof wrapper ? Ctor : func).apply(isBind ? thisArg : this, args);
5539 function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {
5541 if (!isBindKey && !isFunction(func)) {
5556 var data = !isBindKey && getData(func),
5557 …newData = [func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, ar…
5565 ? (isBindKey ? 0 : func.length)
5771 function getCallback(func, thisArg, argCount) {
5774 return argCount ? result(func, thisArg, argCount) : result;
5784 var getData = !metaMap ? noop : function(func) {
5785 return metaMap.get(func);
5912 function isBindable(func) {
5914 result = !(support.funcNames ? func.name : support.funcDecomp);
5917 var source = fnToString.call(func);
5923 result = reThis.test(source) || isNative(func);
5924 baseSetData(func, result);
7111 var func = getCallback(iteratee);
7112 return (func === baseCallback && iteratee == null)
7114 : binaryIndexBy(array, value, func(iteratee, thisArg, 1));
7139 var func = getCallback(iteratee);
7140 return (func === baseCallback && iteratee == null)
7142 : binaryIndexBy(array, value, func(iteratee, thisArg, 1), true);
7401 var func = getCallback();
7402 if (!(func === baseCallback && iteratee == null)) {
7403 iteratee = func(iteratee, thisArg, 3);
7893 var func = isArray(collection) ? arrayEvery : baseEvery;
7897 return func(collection, predicate);
7941 var func = isArray(collection) ? arrayFilter : baseFilter;
7943 return func(collection, predicate);
8254 var func = isArray(collection) ? arrayMap : baseMap;
8256 return func(collection, iteratee);
8453 var func = isArray(collection) ? arrayReduce : baseReduce;
8454 …return func(collection, getCallback(iteratee, thisArg, 4), accumulator, arguments.length < 3, base…
8477 var func = isArray(collection) ? arrayReduceRight : baseReduce;
8478 …return func(collection, getCallback(iteratee, thisArg, 4), accumulator, arguments.length < 3, base…
8520 var func = isArray(collection) ? arrayFilter : baseFilter;
8522 return func(collection, function(value, index, collection) {
8656 var func = isArray(collection) ? arraySome : baseSome;
8660 return func(collection, predicate);
8838 function after(n, func) {
8839 if (!isFunction(func)) {
8842 n = func;
8843 func = temp;
8851 return func.apply(this, arguments);
8872 function ary(func, n, guard) {
8873 if (guard && isIterateeCall(func, n, guard)) {
8876 n = (func && n == null) ? func.length : nativeMax(+n || 0, 0);
8877 return createWrapper(func, ARY_FLAG, null, null, null, null, n);
8896 function before(n, func) {
8898 if (!isFunction(func)) {
8901 n = func;
8902 func = temp;
8909 result = func.apply(this, arguments);
8911 func = null;
8952 function bind(func, thisArg) {
8960 return createWrapper(func, bitmask, thisArg, partials, holders);
9092 function curry(func, arity, guard) {
9093 if (guard && isIterateeCall(func, arity, guard)) {
9096 var result = createWrapper(func, CURRY_FLAG, null, null, null, null, null, arity);
9138 function curryRight(func, arity, guard) {
9139 if (guard && isIterateeCall(func, arity, guard)) {
9142 var result = createWrapper(func, CURRY_RIGHT_FLAG, null, null, null, null, null, arity);
9209 function debounce(func, wait, options) {
9221 if (!isFunction(func)) {
9254 result = func.apply(thisArg, args);
9271 result = func.apply(thisArg, args);
9298 result = func.apply(thisArg, args);
9312 result = func.apply(thisArg, args);
9338 function defer(func) {
9339 return baseDelay(func, 1, arguments, 1);
9358 function delay(func, wait) {
9359 return baseDelay(func, wait, arguments, 2);
9505 function memoize(func, resolver) {
9506 if (!isFunction(func) || (resolver && !isFunction(resolver))) {
9516 var result = func.apply(this, arguments);
9570 function once(func) {
9571 return before(func, 2);
9606 function partial(func) {
9610 return createWrapper(func, PARTIAL_FLAG, null, partials, holders);
9644 function partialRight(func) {
9648 return createWrapper(func, PARTIAL_RIGHT_FLAG, null, partials, holders);
9677 function rearg(func) {
9679 return createWrapper(func, REARG_FLAG, null, null, null, indexes);
9720 function throttle(func, wait, options) {
9724 if (!isFunction(func)) {
9736 return debounce(func, wait, debounceOptions);
12303 function attempt(func) {
12305 return func();
12346 function callback(func, thisArg, guard) {
12347 if (guard && isIterateeCall(func, thisArg, guard)) {
12350 return isObjectLike(func)
12351 ? matches(func)
12352 : baseCallback(func, thisArg);
12484 func = source[methodName];
12486 object[methodName] = func;
12488 object.prototype[methodName] = (function(func) {
12493 …(result.__actions__ = arrayCopy(this.__actions__)).push({ 'func': func, 'args': arguments, 'thisAr…
12499 return func.apply(object, args);
12501 }(func));
12941 baseForOwn(lodash, function(func, methodName) {
12943 source[methodName] = func;
13082 baseForOwn(LazyWrapper.prototype, function(func, methodName) {
13096 ? func.call(value)
13106 result = func.apply(wrapper, args);
13120 var func = arrayProto[methodName],
13127 return func.apply(this.value(), args);
13130 return func.apply(value, args);
22277 var Config = function (good_length, max_lazy, nice_length, max_chain, func) {
22282 this.func = func;
22895 configuration_table[s.level].func(s, flush));
66405 , abortable = function(func) {
66408 return func.apply(this, arguments);