Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 186) sorted by relevance

12345678

/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/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.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 …]
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/lodash/test/
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 …]
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 …]
/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 …]
/plugin/function/
H A Dsyntax.php53 $func = $matches[1];
54 $a = explode('?', $func);
55 $func = $a[0];
58 if(preg_match("#^[a-z0-9\-_ \./]+$#i", $func)) {
60 $filename = DOKU_PLUGIN . 'function/functions/' . $this->getConf($func);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClientConfiguration.php72 $func = DsnParser::parseFunc($dsnString);
77 if ('dsn' === $func->getName()) {
79 $dsn = $func->first();
81 } elseif ('pool' === $func->getName()) {
85 foreach ($func->getArguments() as $arg) {
90 throw new FunctionNotSupportedException($dsnString, $func->getName());
93 foreach ($func->getParameters() as $optionName => $optionValue) {
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/modules/
H A Dmodule.jst2 func = convert('<%= name %>', require('../<%= _.get(mapping.remap, name, name) %>'));
4 func.placeholder = require('./placeholder');
5 module.exports = func;
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;
/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/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md77 $func = DsnParser::parseFunc('failover(sendgrid://KEY@default smtp://127.0.0.1)');
78 echo $func->getName(); // "failover"
79 echo get_class($func->first()); // "Nyholm\Dsn\Configuration\Url"
80 echo $func->first()->getHost(); // "default"
81 echo $func->first()->getUser(); // "KEY"
87 $func = DsnParser::parseFunc('foo(udp://localhost failover:(tcp://localhost:61616,tcp://remotehost:61616)?initialReconnectDelay=100)?start=now');
88 echo $func->getName(); // "foo"
89 echo $func->getParameters()['start']; // "now"
91 $args = $func->getArguments();
109 $func
[all...]
/plugin/codemirror/dist/modes/
H A Dapl.min.js1func:false,op:false,string:false,escape:false}},token:function(i,j){var k,l;if(i.eatSpace()){retur…
/plugin/sequencediagram/bower_components/underscore/
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/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/jplayer/vendor/happyworm/jplayer/lib/circle-player/js/
H A Djquery.grab.js23 function unbind(elem, type, func){ argument
25 return $(elem).unbind(type, func);
29 … if (bind._binds[i].elem === elem && bind._binds[i].type === type && bind._binds[i].func === func){
40 function bind(elem, type, func, pass){ argument
42 return $(elem).bind(type, pass, func);
46 return bind[type].bind(elem, type, func, pass);
56 func.call(elem, e);
63 bind._binds.push({elem: elem, type: type, func: func, fnc: fnc});
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DEvalBarrett.php67 self::$custom_reduction = $func;
108 self::$custom_reduction = $func;
110 return $func;
/plugin/diagramsnet/lib/math/jax/input/AsciiMath/
H A Djax.js19func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:A,func:true},{input:"lim",tag:"mo",output…
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfcktools.js291 FCKTools.RunFunction = function( func, thisObject, paramsArray, timerWindow ) argument
293 if ( func )
294 this.SetTimeout( func, 0, thisObject, paramsArray, timerWindow ) ;
297 FCKTools.SetTimeout = function( func, milliseconds, thisObject, paramsArray, timerWindow ) argument
303 func.apply( thisObject, [].concat( paramsArray ) ) ;
305 func.apply( thisObject ) ;
310 FCKTools.SetInterval = function( func, milliseconds, thisObject, paramsArray, timerWindow ) argument
315 func.apply( thisObject, paramsArray || [] ) ;
350 FCKTools.CreateEventListener = function( func, params ) argument
359 func.apply( this, aAllParams.concat( params ) ) ;
/plugin/ac/
H A Dscript.js1 function sack_form(form, func) { argument
14 ajax.afterCompletion = func;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DWmf.php60 // func is number of GDI function
61 $func = $recordInfo['func'];
66 switch ($func) {
183 if ($func == 0x0325) {
185 } elseif ($func == 0x0324) {
/plugin/tindexmenu/syntax/
H A Dindexmenu.php24 function search_callback($func,&$data,$base,$file,$type,$lvl,$opts) { argument
25 return call_user_func_array($func, array(&$data,$base,$file,$type,$lvl,$opts));
637 * @param callback $func Callback (function name or arayy with object,method)
643 function _search(&$data,$base,$func,$opts,$dir='',$lvl=1){ argument
665 search_callback($func,$dirs_tmp,$base,$dir,'d',$lvl,$opts);
670 if ($dir['return']) $this->_search($data,$base,$func,$opts,$dir['file'],$lvl+1);
675 …if (search_callback($func,$data,$base,$dir,'d',$lvl,$opts)) $this->_search($data,$base,$func,$opts…
680 search_callback($func,$files_tmp,$base,$file,'f',$lvl,$opts);
/plugin/autoindentcontrol/
H A Dscript.js174 func,
186 func = editor.events[type][guid].toString();
188 if (func.match(/^function\s+keyHandler\b/)) {

12345678