Home
last modified time | relevance | path

Searched refs:result (Results 26 – 50 of 68) sorted by last modified time

123

/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DClassServer.php86 $result = $object->$method($args);
94 $result = $method($args);
96 return $result;
H A DServer.php46 $result = $this->call($this->message->methodName, $this->message->params);
48 // Is the result an error?
49 if ($result instanceof Error) {
50 $this->error($result);
53 // Encode the result
54 $r = new Value($result);
175 $result = new Error(-32600, 'Recursive calls to system.multicall are forbidden');
177 $result = $this->call($method, $params);
179 if ($result instanceof Error) {
181 'faultCode' => $result
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php1847 $result = $xpath->query($query);
1848 $microformats = $result->length !== 0;
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
H A Dlessc.inc.php
/dokuwiki/bin/
H A Drender.php58 $result = p_render($renderer, p_get_instructions($source), $info);
59 if (is_null($result)) throw new DokuCLI_Exception("No such renderer $renderer");
60 echo $result;
H A Dwantedpages.php25 private $result = []; variable in WantedPagesCLI
84 Sort::ksort($this->result);
85 foreach ($this->result as $main => $subs) {
159 * Parse instructions and add the non-existing links to the result array
176 $this->result[$pid][] = $mid;
178 $this->result[$mid][] = $pid;
/dokuwiki/inc/Sitemap/
H A DItem.php60 $result = ' <url>' . NL
64 $result .= ' <changefreq>' . hsc($this->changefreq) . '</changefreq>' . NL;
66 $result .= ' <priority>' . hsc($this->priority) . '</priority>' . NL;
67 $result .= ' </url>' . NL;
68 return $result;
/dokuwiki/conf/
H A Dmysql.conf.php.example54 /* This statement is used to grant or deny access to the wiki. The result
56 * of the user. If the result table is empty or contains more than one
90 * result should be a table containing all groups the given user is
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php138 $result = [];
140 $result[] = [
147 return $result;
184 $result = [];
208 if (!isset($result[$target])) {
209 $result[$target] = [];
211 $result[$target][$u] = [$m[2], $m[3]]; // add to result
214 return array_reverse($result);
253 $result
[all...]
/dokuwiki/inc/
H A DAjax.php298 $result = [
311 $result = ['error' => $error, 'ns' => $NS];
315 echo json_encode($result, JSON_THROW_ON_ERROR);
376 // result contains matches in pages and namespaces
386 // it is a matching page, add it to the result
H A DJpegMeta.php1076 $result = @fseek($this->_fp, $length, SEEK_CUR);
1078 if (!($result === 0)) {
1288 $result = @fseek($this->_fp, $origLength, SEEK_CUR);
1290 if ($result != 0) {
1590 $result = xml_parse_into_struct($parser, $data, $values, $tags);
1593 if ($result == 0) {
/dokuwiki/lib/scripts/
H A Dlinkwiz.js10 result: null, property in dw_linkwiz
49 dw_linkwiz.result = jQuery('#link__wiz_result')[0];
52 jQuery(dw_linkwiz.result).css('position', 'relative');
62 jQuery(dw_linkwiz.result).on('click', 'a', dw_linkwiz.onResultClick);
110 * @param num int result div to return
121 * @param num int result div to return
125 return jQuery(dw_linkwiz.result).find('div').eq(num);
129 * Select the given result
150 var yDiff = childPos + $obj.outerHeight() - jQuery(dw_linkwiz.result).innerHeight();
154 jQuery(dw_linkwiz.result)[
[all...]
H A Dfileuploader.js169 var result = [];
175 result.push(candidates[i]);
178 return result;
189 * will result in:
333 onComplete: function(id, fileName, result){ argument
334 self._onComplete(id, fileName, result);
335 self._options.onComplete(id, fileName, result);
363 _onComplete: function(id, fileName, result){
365 if (result.error){
366 this._options.showMessage(result
612 AnonymousFunctionc6e2ab791200(id, fileName, result) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DBlowfish.php556 foreach ($results as $result) {
557 $output .= $result[$i];
H A DHash.php576 // NH hash and add bit-length. Concatenate the result to Y.
1427 // Add this chunk's hash to result so far
H A DRC2.php396 $result = parent::encrypt($plaintext);
398 return $result;
418 $result = parent::decrypt($ciphertext);
420 return $result;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1465 * An intermediate cert that linked to itself would result in an infinite loop so to prevent
1732 $result = [];
1762 $result[] = $v;
1766 return $result;
1840 $result = '';
1859 $result .= ASN1::encodeDER($rdn, Maps\RelativeDistinguishedName::MAP);
1861 return $result;
1874 $result = [];
1944 $result[$desc] = isset($result[
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php447 $result = ['hex' => $this->toHex(true)];
449 $result['precision'] = $this->getPrecision();
451 return $result;
3565 _normalize($result) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php300 $result = $this->sftp->get($this->path, false, $this->pos, $count);
302 if ($result === false) {
307 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size);
310 if (empty($result)) { // ie. false or empty string
314 $this->pos += strlen($result);
316 return $result;
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
334 if (!$result) {
342 if ($result === false) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1005 $result = [];
1008 $result[] = $relativeDir . $value;
1014 $result = array_merge($result, $temp);
1016 $result[] = $relativeDir . $value;
1020 return $result;
1225 $result = strcasecmp($a['filename'], $b['filename']);
1226 if ($result) {
1227 return $order === SORT_DESC ? -$result : $result;
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md221 * Check the result of sanitize before returning in `get_content()` and `get_description()`. [#494](https://github.com/simplepie/simplepie/pull/494)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php61 /** Use no line numbers when building the result */
63 /** Use normal line numbers when building the result */
65 /** Use fancy line numbers when building the result */
397 * If null, nl2br() will be used on the result string.
2175 $result = $this->hsc($this->source);
2179 $result = str_replace(array('<SEMI>', '<PIPE>'), array(';', '|'), $result);
2183 $this->finalise($result);
2184 return $result;
2445 $result
3121 indent(& $result) global() argument
[all...]
/dokuwiki/inc/Remote/
H A DXmlRpcServer.php53 $result = $this->remote->call($methodname, $args);
54 return $result;

123