Home
last modified time | relevance | path

Searched refs:memo (Results 1 – 25 of 41) sorted by relevance

12

/plugin/asciidocjs/node_modules/async/
Dmemoize.js63 var memo = Object.create(null);
68 if (key in memo) {
69 (0, _setImmediate2.default)(() => callback(null, ...memo[key]));
77 memo[key] = resultArgs;
87 memoized.memo = memo;
Dfoldl.js142 function reduce(coll, memo, iteratee, callback) { argument
146 _iteratee(memo, x, (err, v) => {
147 memo = v;
150 }, err => callback(err, memo));
Dreduce.js142 function reduce(coll, memo, iteratee, callback) { argument
146 _iteratee(memo, x, (err, v) => {
147 memo = v;
150 }, err => callback(err, memo));
Dinject.js142 function reduce(coll, memo, iteratee, callback) { argument
146 _iteratee(memo, x, (err, v) => {
147 memo = v;
150 }, err => callback(err, memo));
DreduceRight.js37 function reduceRight(array, memo, iteratee, callback) { argument
39 return (0, _reduce2.default)(reversed, memo, iteratee, callback);
Dfoldr.js37 function reduceRight(array, memo, iteratee, callback) { argument
39 return (0, _reduce2.default)(reversed, memo, iteratee, callback);
/plugin/asciidocjs/node_modules/core-js/modules/
D_array-reduce.js6 module.exports = function (that, callbackfn, aLen, memo, isRight) { argument
15 memo = self[index];
25 memo = callbackfn(memo, self[index], index, O);
27 return memo;
Dcore.dict.js104 var memo, key;
107 memo = O[keys[i++]];
108 } else memo = Object(init);
110 memo = mapfn(memo, O[key], key, object);
112 return memo;
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_array-reduce.js6 module.exports = function (that, callbackfn, aLen, memo, isRight) { argument
15 memo = self[index];
25 memo = callbackfn(memo, self[index], index, O);
27 return memo;
Dcore.dict.js104 var memo, key;
107 memo = O[keys[i++]];
108 } else memo = Object(init);
110 memo = mapfn(memo, O[key], key, object);
112 return memo;
/plugin/asciidocjs/node_modules/core-js/build/
Dbuild.ls11 let @ = modules.reduce ((memo, it)-> memo[it] = on; memo), {}
Dindex.js93 }.call(modules.reduce(function(memo, it){ argument
94 memo[it] = true;
95 return memo;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dcollections.js175 var sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num; }, 0); argument
179 …sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num * this.multiplier; }, 0, context); argument
182 sum = _([1, 2, 3]).reduce(function(memo, num){ return memo + num; }, 0); argument
185 sum = _.reduce([1, 2, 3], function(memo, num){ return memo + num; }); argument
188 var prod = _.reduce([1, 2, 3, 4], function(memo, num){ return memo * num; }); argument
206 var list = _.reduceRight(['foo', 'bar', 'baz'], function(memo, str){ return memo + str; }, ''); argument
209 list = _.reduceRight(['foo', 'bar', 'baz'], function(memo, str){ return memo + str; }); argument
212 var sum = _.reduceRight({a: 1, b: 2, c: 3}, function(memo, num){ return memo + num; }); argument
/plugin/sequencediagram/bower_components/underscore/
Dunderscore.js181 function iterator(obj, iteratee, memo, keys, index, length) { argument
184 memo = iteratee(memo, obj[currentKey], currentKey, obj);
186 return memo;
189 return function(obj, iteratee, memo, context) { argument
196 memo = obj[keys ? keys[index] : index];
199 return iterator(obj, iteratee, memo, keys, index, length);
887 var memo;
890 memo = func.apply(this, arguments);
893 return memo;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
Dunderscore.js197 var reducer = function(obj, iteratee, memo, initial) { argument
202 memo = obj[keys ? keys[index] : index];
207 memo = iteratee(memo, obj[currentKey], currentKey, obj);
209 return memo;
212 return function(obj, iteratee, memo, context) { argument
214 return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial);
922 var memo;
925 memo = func.apply(this, arguments);
928 return memo;
/plugin/asciidocjs/node_modules/async/dist/
Dasync.js1955 function reduce(coll, memo, iteratee, callback) { argument
1959 _iteratee(memo, x, (err, v) => {
1960 memo = v;
1963 }, err => callback(err, memo));
3596 var memo = Object.create(null);
3601 if (key in memo) {
3602 setImmediate$1(() => callback(null, ...memo[key]));
3610 memo[key] = resultArgs;
3620 memoized.memo = memo;
4271 function reduceRight (array, memo, iteratee, callback) { argument
[all …]
Dasync.mjs1834 * successive step. `memo` is the initial state of the reduction. This function
1851 * @param {*} memo - The initial state of the reduction.
1857 * Invoked with (memo, item, callback).
1874 * function getFileSizeInBytes(memo, file, callback) {
1879 * callback(null, memo + stat.size);
1949 function reduce(coll, memo, iteratee, callback) { argument
1953 _iteratee(memo, x, (err, v) => {
1954 memo = v;
1957 }, err => callback(err, memo));
3563 * The cache of results is exposed as the `memo` property of the function
[all …]
/plugin/emoji/script/
Djquery.textcomplete.js888 var memo = {};
890 if (memo[term]) {
891 callback(memo[term]);
894 memo[term] = (memo[term] || []).concat(data);
/plugin/freechat/phpfreechat/data/public/js/
Dprototype.js407 $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) : argument
698 inject: function(memo, iterator, context) { argument
701 memo = iterator(memo, value, index);
703 return memo;
2198 return properties.inject(dim, function(memo, property) { argument
2200 return val === null ? memo : memo - parseInt(val, 10);
3232 return $R(1, total).inject([], function(memo, i) { argument
3233 if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
3234 return memo;
3954 fire: function(element, eventName, memo) { argument
[all …]
/plugin/s5reloaded/ui/effects_support/
Dprototype.js807 function inject(memo, iterator, context) { argument
809 memo = iterator.call(context, memo, value, index);
811 return memo;
2477 return properties.inject(dim, function(memo, property) { argument
2479 return val === null ? memo : memo - parseInt(val, 10);
3782 return $R(1, total).inject([], function(memo, i) { argument
3783 if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
3784 return memo;
4597 function fire(element, eventName, memo, bubble) { argument
4616 event.memo = memo || { };
/plugin/asciidocjs/node_modules/core-js/
DREADME.md225 #reduce(fn(memo, val, index, @), memo?) -> var
226 #reduceRight(fn(memo, val, index, @), memo?) -> var
372 #reduce(fn(memo, val, index, @), memo?) -> var
373 #reduceRight(fn(memo, val, index, @), memo?) -> var
1179 #reduce(fn(memo, val, index, @), memo?) -> var
1180 #reduceRight(fn(memo, val, index, @), memo?) -> var
2025 .reduce(object, fn(memo, val, key, @), memo?) -> var
2150 Dict.reduce(dict, function(memo, it){
2151 return memo + it;
2153 Dict.reduce(dict, function(memo, it){
[all …]
/plugin/issuetracker/
Dprototype.js926 function inject(memo, iterator, context) { argument
928 memo = iterator.call(context, memo, value, index);
930 return memo;
2521 return properties.inject(dim, function(memo, property) { argument
2523 return val === null ? memo : memo - parseInt(val, 10);
5712 function fire(element, eventName, memo, bubble) { argument
5731 event.memo = memo || { };
/plugin/asciidocjs/node_modules/core-js/client/
Dlibrary.js2990 module.exports = function (that, callbackfn, aLen, memo, isRight) {
2999 memo = self[index];
3009 memo = callbackfn(memo, self[index], index, O); property
3011 return memo;
7938 var memo, key;
7941 memo = O[keys[i++]];
7942 } else memo = Object(init);
7944 memo = mapfn(memo, O[key], key, object); property
7946 return memo;
Dcore.js3287 module.exports = function (that, callbackfn, aLen, memo, isRight) {
3296 memo = self[index];
3306 memo = callbackfn(memo, self[index], index, O); property
3308 return memo;
8870 var memo, key;
8873 memo = O[keys[i++]];
8874 } else memo = Object(init);
8876 memo = mapfn(memo, O[key], key, object); property
8878 return memo;
/plugin/asciidocjs/node_modules/neo-async/
Dasync.js8949 var memo = {};
8955 if (has(memo, key)) {
8957 callback.apply(null, memo[key]);
8972 memo[key] = args;
8984 memoized.memo = memo;

12