Home
last modified time | relevance | path

Searched refs:func (Results 101 – 125 of 186) sorted by last modified time

12345678

/plugin/codeprettify/code-prettify/src/
H A Dlang-swift.js51 …dynamic|dynamicType|else|enum|extension|fallthrough|fileprivate|final|for|func|get|guard|import|in…
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.fp.js224 func = name;
368 return func;
383 : func;
402 return func;
417 : func;
492 return overArg(func, function(func) {
493 return typeof func == 'function' ? baseAry(func, n) : func;
509 return overArg(func, function(func) {
562 wrapped = wrapImmutable(func, createCloner(func));
603 var _ = func;
[all …]
H A Dlodash.js1005 return func(value);
1478 func({}, '', {});
1479 return func;
3217 return func == null ? undefined : apply(func, object, args);
3928 return setToString(overRest(func, start, identity), func + '');
4005 return func;
5102 wrapper = (func.length == 1 && isLaziable(func))
5179 fn = isBindKey ? thisBinding[func] : func;
5841 return setToString(overRest(func, undefined, flatten), func + '');
10021 n = (func && n == null) ? func.length : n;
[all …]
H A Dlodash.min.js41 …{var r=n;return r instanceof Un&&(r=r.value()),l(t,function(n,t){return t.func.apply(t.thisArg,a([…
58 …r(var t=n.name+"",r=Gi[t],e=oi.call(Gi,t)?r.length:0;e--;){var u=r[e],i=u.func;if(null==i||i==n)re…
76 …ar r=n(this.__wrapped__);return(r.__actions__=Ur(this.__actions__)).push({func:e,args:arguments,th…
88 …gth)&&u instanceof Un&&Se(e)?(u=u.slice(e,+e+(r?1:0)),u.__actions__.push({func:Qe,args:[t],thisArg…
132 return!i&&s?(o=c?o:new Un(this),o=n.apply(o,f),o.__actions__.push({func:Qe,args:[t],thisArg:T}),new…
133 …me+"";oi.call(Gi,e)||(Gi[e]=[]),Gi[e].push({name:t,func:r})}}),Gi[Jr(T,2).name]=[{name:"wrapper",f…
136 …is.__actions__.length&&(n=new Un(this)),n=n.reverse(),n.__actions__.push({func:Qe,args:[Ge],thisAr…
H A Dlodash.core.min.js11 …urn r=t(n,e,u),!r}),!!r}function w(n,r){return C(r,function(n,r){return r.func.apply(r.thisArg,t([…
18 if(i||r){var e=n(this.__wrapped__);return(e.__actions__=A(this.__actions__)).push({func:u,args:argu…
H A Dlodash.core.js752 function baseIteratee(func) { argument
754 return func;
756 if (func == null) {
759 return (typeof func == 'object' ? baseMatches : baseProperty)(func);
848 return setToString(overRest(func, start, identity), func + '');
1337 function flatRest(func) { argument
1338 return setToString(overRest(func, undefined, flatten), func + '');
2231 function before(n, func) { argument
2242 func = undefined;
2380 function once(func) { argument
[all …]
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md3520 <h3 id="_aftern-func"><code>_.after(n, func)</code></h3>
3737 2. `[arity=func.length]` *(number)*: The arity of `func`.
3787 2. `[arity=func.length]` *(number)*: The arity of `func`.
4117 func(9, 3);
4120 func(10, 5);
10742 func('1');
10745 func(null);
10748 func(NaN);
10776 func('1');
10779 func(null);
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js2254 return func(func(string)) === expected;
10751 return index ? func(value) : func();
13403 return index ? func(array) : func();
20921 return [func(array, 1), func(array, undefined), func(array, NaN)];
23549 return [func(value), func(Object(value)), func(-value), func(Object(-value))];
23610 … return [func(mod(value)), func(Object(mod(value))), func(mod(upper)), func(Object(mod(upper)))];
23665 return index ? func(value) : func();
25804 func = lodashStable.bind(index ? func.apply : func.call, func, null);
25875 assert.deepEqual(func(func(func(func(expected)))), expected);
26724 return index ? func(value) : func();
[all …]
H A Dtest-fp.js49 options = func;
50 func = name;
756 func(function() {
994 func(function() {
1157 func(function() {
1165 func(function() {
1432 func(function() {
1625 func(function() {
1844 func(function() {
1862 func(function() {
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Devents.js631 var func = _.debounce(function() { assert.ok(true); done(); }, 50);
632 var obj = _.extend({}, Backbone.Events).once('async', func);
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dfunctions.js9 var func = function(arg) { return 'name: ' + (this.name || arg); }; function
10 var bound = _.bind(func, context);
13 bound = _(func).bind(context);
16 bound = _.bind(func, null, 'curly');
22 func = _.bind(func, this, 'hello');
25 func = _.bind(func, this, 'curly');
29 func = _.bind(func, this, 'hello', 'moe', 'curly');
33 _.bind(func, 0, 0, 'can bind a function to `0`')();
54 obj.func = _.partial(func, 'a', 'b');
57 obj.func = _.partial(func, _, 'b', _, 'd');
[all …]
H A Dcollections.js830 var func = function() { function
834 assert.equal(func(1, 2, 3, 4), 4, 'can test the size of the arguments object');
H A Dobjects.js303 var func = function() {}; function
304 Child.prototype = _.create(Parent.prototype, {func: func});
305 assert.strictEqual(Child.prototype.func, func, 'properties should be added to object');
897 var obj = {foo: 'bar', func: function(){}}; method in AnonymousFunction235956213600.obj
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
H A Dunderscore.js68 if (context === void 0) return func;
71 return func.call(context, value);
127 return func.apply(this, args);
287 return func == null ? func : func.apply(value, args);
797 return func.apply(null, args);
887 _.wrap = function(func, wrapper) { argument
888 return _.partial(wrapper, func);
912 _.after = function(times, func) { argument
921 _.before = function(times, func) { argument
927 if (times <= 1) func = null;
[all …]
/plugin/sequencediagram/bower_components/lodash/fp/
H A D_baseConvert.js144 func = name;
288 return func;
303 : func;
322 return func;
337 : func;
412 return overArg(func, function(func) { argument
413 return typeof func == 'function' ? baseAry(func, n) : func;
429 return overArg(func, function(func) { argument
482 wrapped = wrapImmutable(func, createCloner(func));
523 var _ = func;
[all …]
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/modules/
H A Dconvert.jst5 * Converts `func` of `name` to an immutable auto-curried iteratee-first data-last
10 * @param {Function} [func] The function to wrap.
14 function convert(name, func, options) {
15 return baseConvert(util, name, func, options);
H A Dthru.jst2func = convert('<%= name %>', require('../<%= _.get(mapping.remap, name, name) %>'), require('./_f…
4 func.placeholder = require('./placeholder');
5 module.exports = func;
H A Dmodule.jst2 func = convert('<%= name %>', require('../<%= _.get(mapping.remap, name, name) %>'));
4 func.placeholder = require('./placeholder');
5 module.exports = func;
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js1005 return func(value);
1478 func({}, '', {});
1479 return func;
3217 return func == null ? undefined : apply(func, object, args);
3928 return setToString(overRest(func, start, identity), func + '');
4005 return func;
5102 wrapper = (func.length == 1 && isLaziable(func))
5179 fn = isBindKey ? thisBinding[func] : func;
5841 return setToString(overRest(func, undefined, flatten), func + '');
10021 n = (func && n == null) ? func.length : n;
[all …]
/plugin/sequencediagram/bower_components/underscore/
H A Dunderscore-min.map1 …","nativeCreate","create","Ctor","_wrapped","exports","module","VERSION","func","argCount","value"…
H A Dunderscore.js64 if (context === void 0) return func;
277 return func == null ? func : func.apply(value, args);
711 _.bind = function(func, context) { argument
724 _.partial = function(func) { argument
765 _.delay = function(func, wait) { argument
768 return func.apply(null, args);
852 _.wrap = function(func, wrapper) { argument
853 return _.partial(wrapper, func);
877 _.after = function(times, func) { argument
886 _.before = function(times, func) { argument
[all …]
/plugin/sphinxsearch-was/
H A Dsphinxapi.php824 function SetGroupBy($attribute, $func, $groupsort = "@group desc") argument
828 assert($func == SPH_GROUPBY_DAY
829 || $func == SPH_GROUPBY_WEEK
830 || $func == SPH_GROUPBY_MONTH
831 || $func == SPH_GROUPBY_YEAR
832 || $func == SPH_GROUPBY_ATTR
833 || $func == SPH_GROUPBY_ATTRPAIR);
836 $this->_groupfunc = $func;
/plugin/emoji/script/
H A Djquery.textcomplete.js101 var lock = function (func) { argument
126 func.apply(self, replayArgs);
131 func.apply(this, args);
887 var memoize = function (func) { argument
893 func.call(this, term, function (data) {
947 var debounce = function (func, wait) { argument
955 result = func.apply(context, args);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DCoverageNamespacedFunctionTest.php9 foo\func();
H A DNamespaceCoveredFunction.php4 function func() function

12345678