Home
last modified time | relevance | path

Searched refs:ident (Results 1 – 25 of 55) sorted by relevance

123

/plugin/doi/
H A Dscript.js25 const ident = prompt(LANG.plugins.doi.prompt);
26 if (!ident) return;
29 if (ident.match(isbnRegex)) {
30 PluginDoi.insert('isbn', ident);
35 if (ident.match(doiRegex)) {
36 PluginDoi.insert('doi', ident);
49 insert: function (key, ident) { argument
50 const syntax = '[[' + key + '>' + ident + ']]';
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DSyslogHandler.php33 protected $ident; variable in Monolog\\Handler\\SyslogHandler
38 * @param string $ident
42 …public function __construct(string $ident, $facility = LOG_USER, $level = Logger::DEBUG, bool $bub… argument
46 $this->ident = $ident;
63 if (!openlog($this->ident, $this->logopts, $this->facility)) {
64 …throw new \LogicException('Can\'t open syslog for ident "'.$this->ident.'" and facility "'.$this->…
DSyslogUdpHandler.php41 protected $ident; variable in Monolog\\Handler\\SyslogUdpHandler
50 * @param string $ident Program name or tag for each log message.
56 …facility = LOG_USER, $level = Logger::DEBUG, bool $bubble = true, string $ident = 'php', int $rfc … argument
64 $this->ident = $ident;
129 $this->ident . "[" . $pid . "]: ";
137 $this->ident . " " .
/plugin/dirtylittlehelper/mermaid/editor/docs/
D27.27.js1ident:/π|ℯ|\b(?!\d)\w+\b/,escape:/(?:[abefnrstv\\"'\n\r]|[0-7]{1,3}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]… property
D27.27.js.map1ident: /π|ℯ|\\b(?!\\d)\\w+\\b/,\n // escape sequences\n escape: /(?:[abefnrstv\\\\\"'\\n\\r]…
D36.36.js.map1 …endif',\n '#if',\n '#ifdef',\n '#ifndef',\n '#ident',\n '#undef…
/plugin/dev/
DSVGIcon.php49 * @param string $ident prefixed name of the icon
54 public function downloadRemoteIcon($ident, $save = '') argument
56 $icon = $this->remoteIcon($ident);
93 * @param string $ident prefixed name of the icon
97 public function remoteIcon($ident) argument
99 if (strpos($ident, ':')) {
100 list($prefix, $name) = explode(':', $ident);
103 $name = $ident;
Dcli.php125 $ident = array_shift($args);
128 return $this->cmdDownloadSVG($ident, $save, $keep);
407 * @param string $ident
413 protected function cmdDownloadSVG($ident, $save = '', $keep = false) argument
417 return (int)$svg->downloadRemoteIcon($ident, $save);
/plugin/randomtables/syntax/
Dpick.php77 [$ident, $label] = explode(':', $table,2);
79 $ident = $label = $table;
82 $ident = $renderer->_xmlEntities(trim($ident));
84 $renderer->doc .= "<option value=\"{$ident}\">{$label}</option>";
Dmulti.php75 [$ident, $label] = explode(':', $table,2);
77 $ident = $label = $table;
80 $ident = $renderer->_xmlEntities(trim($ident));
85 . $ident . '" data-target="results-'
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
DBasicGraphEditor.java838 protected mxIGraphLayout createLayout(String ident, boolean animate)
842 if (ident != null)
846 if (ident.equals("verticalHierarchical"))
850 else if (ident.equals("horizontalHierarchical"))
854 else if (ident.equals("verticalTree"))
858 else if (ident.equals("horizontalTree"))
862 else if (ident.equals("parallelEdges"))
866 else if (ident.equals("placeEdgeLabels"))
870 else if (ident.equals("organicLayout"))
874 if (ident.equals("verticalPartition"))
[all …]
DBasicGraphEditor.java.bak807 protected mxIGraphLayout createLayout(String ident)
811 if (ident != null)
815 if (ident.equals("verticalHierarchical"))
819 else if (ident.equals("horizontalHierarchical"))
823 else if (ident.equals("verticalTree"))
827 else if (ident.equals("horizontalTree"))
831 else if (ident.equals("parallelEdges"))
835 else if (ident.equals("placeEdgeLabels"))
839 else if (ident.equals("organicLayout"))
843 if (ident.equals("verticalPartition"))
[all …]
/plugin/captcha/
Dhelper.php193 protected function generateMagicCode($ident, $rand) argument
195 $ident = hexdec(substr(md5($ident), 5, 5)); // use part of the md5 to generate an int
197 $comb = (int)$rand ^ $ident; // combine both values
210 public function generateCaptchaCode($ident, $rand) argument
212 $numbers = $this->generateMagicCode($ident, $rand);
232 protected function generateMath($ident, $rand) argument
234 $numbers = $this->generateMagicCode($ident, $rand);
DFileCookie.php26 public function __construct($ident, $rand) argument
29 …$this->path = $conf['tmpdir'] . '/captcha/' . date('Y-m-d') . '/' . md5($ident . $rand) . '.cookie…
/plugin/mathpublish/
Dsyntax.php140 $ident = md5($math . '-' . $size);
143 $imagefile = getCacheName($ident, '.mathpublish.png');
155 $img = DOKU_BASE . 'lib/plugins/mathpublish/img.php?img=' . $ident;
/plugin/struct/meta/
H A DNestedValue.php117 $ident = md5(array_reduce($row, static fn($carry, $value) => $carry . $value, ''));
119 $this->resultRows[$ident] = $row;
/plugin/structgantt/meta/
DGantt.php401 $ident = $this->intervalFormat($date, 'header');
402 if (!isset($headers[$ident])) {
403 $headers[$ident] = 1;
405 $headers[$ident]++;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
DStreamHandler.php349 $ident = $request['http_method'] . ' ' . Core::url($request);
350 $fn = function () use ($ident, $value, $map, $args) {
353 fprintf($value, '<%s> [%s] ', $ident, $map[$code]);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
DStreamHandler.php508 $ident = $request->getMethod() . ' ' . $request->getUri()->withFragment('');
511 function () use ($ident, $value, $map, $args) {
514 fprintf($value, '<%s> [%s] ', $ident, $map[$code]);
/plugin/codemirror/dist/modes/
Dswift.min.js.map1ident","current","hasOwnProperty","tokenUntilClosingParen","depth","inner","backUp","pop","openQuo…
Deiffel.min.js.map1ident\";\n } else if (/[a-zA-Z_0-9]/.test(ch)) {\n stream.eatWhile(/[a-zA-Z_0-9]/);\n …
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/
DStreamHandler.php581 $ident = $request->getMethod().' '.$request->getUri()->withFragment('');
584 static function (int $code, ...$passed) use ($ident, $value, $map, $args): void {
585 \fprintf($value, '<%s> [%s] ', $ident, $map[$code]);
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DBerEncoder.php1144 $ident = ord($this->binary[$this->pos++]);
1145 if ($ident === 0x40) {
1148 if ($ident === 0x41) {
/plugin/s5reloaded/ui/effects_support/
Ddragdrop.js919 new_sequence.each(function(ident) { argument
920 var n = nodeMap[ident];
923 delete nodeMap[ident];
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dstatement.js44 let ident = this.input.slice(next, pos)
45 if (!this.isKeyword(ident)) return true

123