Home
last modified time | relevance | path

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

/dokuwiki/lib/scripts/
Dcompatibility.js14 var func;
15 if(arguments.callee) func = arguments.callee.caller.name;
16 if(func) func = ' '+func+'()';
17 var line = 'DEPRECATED function call'+func+'. '+msg;
37 function DEPRECATED_WRAP(func, context) { argument
40 return func.apply(context || this, arguments);
Ddelay.js22 add: function (func, timeout) { argument
24 timer._handlers[id] = func;
35 function Delay (func, timeout) { argument
36 this.func = func;
43 func: null, property in Delay
68 this.func.call(this._data._this, this._data._params);
Dhotkeys.js119 v.func.call(t);
183 func : cmd_func, property
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
DEvalBarrett.php63 self::$custom_reduction = $func;
104 self::$custom_reduction = $func;
106 return $func;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
DPrimeField.php61 public function setReduction(\Closure $func) argument
63 $this->reduce = $func->bindTo($this, $this);
DBigInteger.php872 $func = $this->value->createRecurringModuloFunction();
873 return function (BigInteger $x) use ($func) {
874 return new static($func($x->value));
/dokuwiki/inc/lang/ro/
Dlogin.txt3 Nu ești autentificat! Introdu datele de autentificare. Pentru ca autentificarea să funcționeze treb…
/dokuwiki/_test/core/
DDokuWikiTest.php223 * @param string $func The method to call
228 protected static function callInaccessibleMethod($obj, $func, array $args) { argument
230 $method = $class->getMethod($func);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
DBase.php162 public function setReduction(callable $func) argument
164 $this->factory->setReduction($func);
/dokuwiki/lib/exe/
Djs.php333 * @param string $func
337 function js_runonstart($func) argument
339 echo "jQuery(function(){ $func; });" . NL;
/dokuwiki/inc/
Dsearch.php22 * @param callback $func Callback (function name or array with object,method)
30 function search(&$data, $base, $func, $opts, $dir = '', $lvl = 1, $sort = 'natural') argument
65 if (call_user_func_array($func, [&$data, $base, $dir, 'd', $lvl, $opts])) {
66 search($data, $base, $func, $opts, $dir, $lvl + 1, $sort);
71 call_user_func_array($func, [&$data, $base, $file, 'f', $lvl, $opts]);
Dhtml.php450 * @param callable $func callback to print an list item
456 function html_buildlist($data, $class, $func, $lifunc = null, $forcewrapper = false) argument
500 $html .= call_user_func($func, $item);
/dokuwiki/lib/plugins/acl/lang/ro/
Dhelp.txt11 Consultarea [[doku>acl|official documentation on ACL]] vă poate ajuta să înţelegeţi deplin cum func
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
DEvalBarrett.php72 self::$custom_reduction = $func;
74 return $func;
164 self::$custom_reduction = $func;
166 return $func;
/dokuwiki/
Dinstall.php645 foreach ($funcs as $func) {
646 if (!function_exists($func)) {
647 $error[] = sprintf($lang['i_funcna'], $func);
/dokuwiki/vendor/splitbrain/lesserphp/src/
DLessc.php197 * @param callable $func callback
199 public function registerFunction(string $name, callable $func): void argument
201 $this->libFunctions[$name] = $func;
1260 protected function funcToColor($func) argument
1262 $fname = $func[1];
1263 if ($func[2][0] != 'list') return false; // need a list of arguments
1264 $rawComponents = $func[2][2];
DParser.php546 if ($this->func($value)) return true;
1116 protected function func(&$func) function in LesserPHP\\Parser
1143 $func = ['function', $fname, $args];
1149 $func = ['function', $fname, $string];
/dokuwiki/inc/Search/
DIndexer.php663 * @param callback $func comparison function
669 public function lookupKey($key, &$value, $func = null) argument
687 if (!is_null($func)) {
690 if (call_user_func_array($func, [$val, $word]))
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DEngine.php1159 $func = $fqengine::generateCustomReduction($this, static::class);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php3207 return \Closure::bind($func, $this, static::class);