| /plugin/asciidocjs/node_modules/lodash/fp/ |
| D | _baseConvert.js | 16 function baseArity(func, n) { argument 18 ? function(a, b) { return func.apply(undefined, arguments); } 19 : function(a) { return func.apply(undefined, arguments); }; 31 function baseAry(func, n) { argument 33 ? function(a, b) { return func(a, b); } 34 : function(a) { return func(a); }; 61 function createCloner(func) { argument 63 return func({}, object); 76 function flatSpread(func, start) { argument 94 return func.apply(this, otherArgs); [all …]
|
| /plugin/sequencediagram/bower_components/lodash/fp/ |
| D | _baseConvert.js | 16 function baseArity(func, n) { argument 18 ? function(a, b) { return func.apply(undefined, arguments); } 19 : function(a) { return func.apply(undefined, arguments); }; 31 function baseAry(func, n) { argument 33 ? function(a, b) { return func(a, b); } 34 : function(a) { return func(a); }; 61 function createCloner(func) { argument 63 return func({}, object); 76 function flatSpread(func, start) { argument 94 return func.apply(this, otherArgs); [all …]
|
| /plugin/sequencediagram/bower_components/lodash/dist/ |
| D | lodash.fp.js | 96 function baseArity(func, n) { 98 ? function(a, b) { return func.apply(undefined, arguments); } 99 : function(a) { return func.apply(undefined, arguments); }; 111 function baseAry(func, n) { 113 ? function(a, b) { return func(a, b); } 114 : function(a) { return func(a); }; 141 function createCloner(func) { 143 return func({}, object); 156 function flatSpread(func, start) { 174 return func.apply(this, otherArgs); [all …]
|
| D | lodash.core.js | 198 function overArg(func, transform) { argument 200 return func(transform(arg)); 443 function baseDelay(func, wait, args) { argument 444 if (typeof func != 'function') { 447 return setTimeout(function() { func.apply(undefined, args); }, wait); 752 function baseIteratee(func) { argument 753 if (typeof func == 'function') { 754 return func; 756 if (func == null) { 759 return (typeof func == 'object' ? baseMatches : baseProperty)(func); [all …]
|
| /plugin/asciidocjs/node_modules/call-bind/test/ |
| D | index.js | 19 var func = function (a, b) { function 23 t.equal(func.length, 2, 'original function length is 2'); 24 t.deepEqual(func(), [undefined, undefined, undefined], 'unbound func with too few args'); 25 t.deepEqual(func(1, 2), [undefined, 1, 2], 'unbound func with right args'); 26 t.deepEqual(func(1, 2, 3), [undefined, 1, 2], 'unbound func with too many args'); 28 var bound = callBind(func); 29 …t.equal(bound.length, func.length + 1, 'function length is preserved', { skip: !functionsHaveConfi… 34 var boundR = callBind(func, sentinel); 35 …t.equal(boundR.length, func.length, 'function length is preserved', { skip: !functionsHaveConfigur… 40 var boundArg = callBind(func, sentinel, 1); [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | Bootstrap.php | 92 foreach ($funcs as $func) { 93 if ($buggy && is_array($func)) { 96 $reflector = new ReflectionMethod($func[0], $func[1]); 110 $func = implode('::', $func); 113 spl_autoload_unregister($func); 116 foreach ($funcs as $func) { 117 spl_autoload_register($func);
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _createFlow.js | 34 var func = funcs[index]; 35 if (typeof func != 'function') { 38 if (prereq && !wrapper && getFuncName(func) == 'wrapper') { 44 func = funcs[index]; 46 var funcName = getFuncName(func), 47 data = funcName == 'wrapper' ? getData(func) : undefined; 55 wrapper = (func.length == 1 && isLaziable(func)) 57 : wrapper.thru(func);
|
| D | _createWrap.js | 51 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument 53 if (!isBindKey && typeof func != 'function') { 71 var data = isBindKey ? undefined : getData(func); 74 func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, 81 func = newData[0]; 87 ? (isBindKey ? 0 : func.length) 94 var result = createBind(func, bitmask, thisArg); 96 result = createCurry(func, bitmask, arity); 98 result = createPartial(func, bitmask, thisArg, partials); 103 return setWrapToString(setter(result, newData), func, bitmask);
|
| D | _apply.js | 11 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 | iteratee.js | 49 function iteratee(func) { argument 50 return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG));
|
| D | _toSource.js | 14 function toSource(func) { argument 15 if (func != null) { 17 return funcToString.call(func); 20 return (func + '');
|
| D | before.js | 23 function before(n, func) { argument 25 if (typeof func != 'function') { 31 result = func.apply(this, arguments); 34 func = undefined;
|
| D | ary.js | 23 function ary(func, n, guard) { argument 25 n = (func && n == null) ? func.length : n; 26 return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n);
|
| D | _isLaziable.js | 14 function isLaziable(func) { argument 15 var funcName = getFuncName(func), 21 if (func === other) { 25 return !!data && func === data[0];
|
| D | core.js | 198 function overArg(func, transform) { argument 200 return func(transform(arg)); 443 function baseDelay(func, wait, args) { argument 444 if (typeof func != 'function') { 447 return setTimeout(function() { func.apply(undefined, args); }, wait); 752 function baseIteratee(func) { argument 753 if (typeof func == 'function') { 754 return func; 756 if (func == null) { 759 return (typeof func == 'object' ? baseMatches : baseProperty)(func); [all …]
|
| D | _getFuncName.js | 16 function getFuncName(func) { argument 17 var result = (func.name + ''), 23 otherFunc = data.func; 24 if (otherFunc == null || otherFunc == func) {
|
| /plugin/asciidocjs/node_modules/function-bind/test/ |
| D | index.js | 28 func: functionBind.call(function () { property 33 namespace.func(1, 2, 3); 42 func: functionBind.call(function () { property 47 namespace.func(4, 5, 6); 56 func: functionBind.call(function () { property 61 var context = namespace.func(1, 2, 3); 70 func: functionBind.call(function () { property 75 var context = namespace.func(4, 5, 6); 123 func: functionBind.call(function () { property 128 namespace.func(1, 2, 3); [all …]
|
| /plugin/sequencediagram/bower_components/lodash/test/ |
| D | test-fp.js | 43 return function(name, func, options) { argument 44 return baseConvert(_, name, func, options); 47 return function(name, func, options) { argument 49 options = func; 50 func = name; 54 ? baseConvert(func, options) 221 var func = iteratee(function(a, b, c) { 225 assert.deepEqual(func(1, 2, 3), [1, 2, 3]); 292 func = isFp ? fp.convert : fp.remove.convert; 298 lodash = func(allFalseOptions), [all …]
|
| D | test.js | 444 result = action.func.apply(action.thisArg, args); 933 var func = _._isIndex; 938 if (func) { 943 return func.apply(undefined, args); 956 if (func) { 961 return func.apply(undefined, args); 978 func = _._isIterateeCall, 987 if (func) { 988 assert.strictEqual(func(1, 0, array), true); 989 assert.strictEqual(func(1, 'a', object), true); [all …]
|
| /plugin/grensladawritezor/fckeditor/editor/_source/internals/ |
| D | fcktools.js | 125 FCKTools.RunFunction = function( func, thisObject, paramsArray, timerWindow ) argument 127 if ( func ) 128 this.SetTimeout( func, 0, thisObject, paramsArray, timerWindow ) ; 131 FCKTools.SetTimeout = function( func, milliseconds, thisObject, paramsArray, timerWindow ) argument 137 func.apply( thisObject, [].concat( paramsArray ) ) ; 139 func.apply( thisObject ) ; 144 FCKTools.SetInterval = function( func, milliseconds, thisObject, paramsArray, timerWindow ) argument 149 func.apply( thisObject, paramsArray || [] ) ; 184 FCKTools.CreateEventListener = function( func, params ) argument 193 func.apply( this, aAllParams.concat( params ) ) ;
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | functions.js | 9 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'); 21 func = function(salutation, name) { return salutation + ': ' + name; }; 22 func = _.bind(func, this, 'hello'); 23 assert.equal(func('moe'), 'hello: moe', 'the function was partially applied in advance'); 25 func = _.bind(func, this, 'curly'); 26 assert.equal(func(), 'hello: curly', 'the function was completely applied in advance'); 28 …func = function(salutation, firstname, lastname) { return salutation + ': ' + firstname + ' ' + la… [all …]
|
| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | transformer.js | 11 function mapCOW(arr, func) { argument 14 var item = func(arr[i]); 24 function walk(ast, func, depthFirst) { argument 29 var astT = func(ast); 36 return walk(node, func, depthFirst); 42 var args = walk(ast.args, func, depthFirst); 44 return walk(node, func, depthFirst); 54 return walk(prop, func, depthFirst); 63 return depthFirst ? func(ast) || ast : ast; 65 function depthWalk(ast, func) { argument [all …]
|
| /plugin/function/ |
| D | syntax.php | 53 $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/ |
| D | ClientConfiguration.php | 72 $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/asciidocjs/node_modules/call-bind/ |
| D | index.js | 24 var func = $reflectApply(bind, $call, arguments); 26 var desc = $gOPD(func, 'length'); 30 func, 36 return func;
|