Home
last modified time | relevance | path

Searched refs:thisArg (Results 1 – 25 of 69) sorted by relevance

123

/plugin/asciidocjs/node_modules/lodash/
D_apply.js11 function apply(func, thisArg, args) { argument
13 case 0: return func.call(thisArg);
14 case 1: return func.call(thisArg, args[0]);
15 case 2: return func.call(thisArg, args[0], args[1]);
16 case 3: return func.call(thisArg, args[0], args[1], args[2]);
18 return func.apply(thisArg, args);
D_createWrap.js51 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
74 func, bitmask, thisArg, partials, holders, partialsRight, holdersRight,
83 thisArg = newData[2];
94 var result = createBind(func, bitmask, thisArg);
98 result = createPartial(func, bitmask, thisArg, partials);
D_createBind.js17 function createBind(func, bitmask, thisArg) { argument
23 return fn.apply(isBind ? thisArg : this, arguments);
D_createOver.js19 var thisArg = this;
21 return apply(iteratee, thisArg, args);
Dbind.js45 var bind = baseRest(function(func, thisArg, partials) { argument
51 return createWrap(func, bitmask, thisArg, partials, holders);
D_createHybrid.js38 function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPo… argument
68 func, bitmask, createHybrid, wrapper.placeholder, thisArg,
72 var thisBinding = isBind ? thisArg : this,
D_createPartial.js20 function createPartial(func, bitmask, thisArg, partials) { argument
38 return apply(fn, isBind ? thisArg : this, args);
D_createRecurry.js30 function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ar… argument
44 func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,
Ddebounce.js91 thisArg = lastThis;
95 result = func.apply(thisArg, args);
D_baseWrapperValue.js21 return action.func.apply(action.thisArg, arrayPush([result], action.args));
Dlodash.js485 function apply(func, thisArg, args) { argument
487 case 0: return func.call(thisArg);
488 case 1: return func.call(thisArg, args[0]);
489 case 2: return func.call(thisArg, args[0], args[1]);
490 case 3: return func.call(thisArg, args[0], args[1], args[2]);
492 return func.apply(thisArg, args);
4430 return action.func.apply(action.thisArg, arrayPush([result], action.args));
4985 function createBind(func, bitmask, thisArg) { argument
4991 return fn.apply(isBind ? thisArg : this, arguments);
5206 …function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argP… argument
[all …]
/plugin/asciidocjs/node_modules/core-js/fn/map/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $Map, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/fn/weak-map/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $WeakMap, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/library/fn/map/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $Map, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/library/fn/set/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $Set, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/fn/set/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $Set, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/library/fn/weak-map/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $WeakMap, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/fn/weak-set/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $WeakSet, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/library/fn/weak-set/
Dfrom.js6 module.exports = function from(source, mapFn, thisArg) { argument
7 return $from.call(typeof this === 'function' ? this : $WeakSet, source, mapFn, thisArg);
/plugin/asciidocjs/node_modules/core-js/modules/
D_flatten-into-array.js9 function flattenIntoArray(target, original, source, sourceLen, start, depth, mapper, thisArg) { argument
12 var mapFn = mapper ? ctx(mapper, thisArg, 3) : false;
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_flatten-into-array.js9 function flattenIntoArray(target, original, source, sourceLen, start, depth, mapper, thisArg) { argument
12 var mapFn = mapper ? ctx(mapper, thisArg, 3) : false;
/plugin/jplayer/vendor/happyworm/jplayer/lib/
Dpopcorn.ie8.js217 Array.prototype.map = function( callback, thisArg ) { argument
239 if ( thisArg ) {
240 T = thisArg;
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
Dpdfmake.js4003 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);
[all …]
/plugin/sequencediagram/bower_components/lodash/
Dlodash.js471 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
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.js471 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
[all …]

123