Home
last modified time | relevance | path

Searched refs:result (Results 251 – 275 of 1997) sorted by relevance

1...<<11121314151617181920>>...80

/plugin/struct/meta/
H A DAggregationCloud.php25 foreach ($rows as $result) {
26 $this->renderTag($result);
34 * @param ['tag' => Value, 'count' => int] $result
36 protected function renderTag($result)
41 $value = $result['tag'];
42 $count = $result['count'];
35 protected $result; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationCloud
114 renderTag($result) global() argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/Template/
H A DTestCaseMethod.tpl.dist33 $result = new PHPUnit_Framework_TestResult;
36 $result->setCodeCoverage(
44 $result->beStrictAboutTestsThatDoNotTestAnything({isStrictAboutTestsThatDoNotTestAnything});
45 $result->beStrictAboutOutputDuringTests({isStrictAboutOutputDuringTests});
46 $result->enforceTimeLimit({enforcesTimeLimit});
47 $result->beStrictAboutTodoAnnotatedTests({isStrictAboutTodoAnnotatedTests});
48 … $result->beStrictAboutResourceUsageDuringSmallTests({isStrictAboutResourceUsageDuringSmallTests});
55 $test->run($result);
70 'result' => $result,
/plugin/refnotes/
H A Dconfig.php23 $result = null;
27 $result = self::$setting[$name][1];
34 $result = self::$section[$sectionName][$name];
38 return $result;
60 $result = unserialize(io_readFile($fileName, false));
63 $result = array();
66 return $result;
/plugin/struct/script/
H A Dfunctions.js17 .fail(function (result) { argument
18 if (result.responseJSON) {
19 if (result.responseJSON.stacktrace) {
20 console.error(result.responseJSON.error + "\n" + result.responseJSON.stacktrace);
22 alert(result.responseJSON.error);
25 alert(jQuery(result.responseText).text());
/plugin/displaywikipage/
H A Dcode.php19 $result = '';
26 $result = p_wiki_xhtml($wikipagename, '', false);
29 …$result .='<div class="secedit2"><a href="' . DOKU_BASE . 'doku.php?id=' . $wikipagename . '&amp;d…
33 $result = p_locale_xhtml('<b>Access Denied</b>');
37 …$result .='<div class="secedit2"><a href="' . DOKU_BASE . 'doku.php?id=' . $wikipagename . '&amp;d…
42 echo $result;
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshCore.js248 result = []
272 return result;
411 return result;
554 return result;
565 return result == null ? value : result;
648 result = null
729 result = {},
827 result = '0' + result;
1066 result = []
1233 result
[all …]
/plugin/xcom/
H A Dremote.php105 $result =$this->find_all_files($namespace,$regex);
109 for($i=0;$i<count($result); $i++) {
110 $result[$i] = preg_replace($regex,"",$result[$i]);
111 $result[$i] = preg_replace("/\/?pages/","",$result[$i]);
112 $result[$i] = str_replace('/',':',$result[$i]);
115 return $result;
139 $result[]="$value";
145 if(isset($result)) return $result;
170 $result = explode('|', $file);
171 $result = explode('?',$result[0]);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php199 $result = $backend->check(
204 …if (!is_array($result) || count($result) !== 2 || !is_bool($result[0]) || !is_string($result[1])) {
208 if ($result[0]) {
209 $this->currentPrincipal = $result[1];
211 return [true, $result[1]];
213 $reasons[] = $result[1];
/plugin/elasticsearch/helper/
H A Ddocparser.php87 $result = $this->runParser($file, $this->parsers[$ext]);
88 if ($result === false) {
103 $data = array_merge($data, $this->processParserResult($result));
144 * @param string $result The string returned by the parser, might be json
147 protected function processParserResult($result) argument
152 $result[0] !== '[' && $result[0] !== '{'
156 ($decoded = json_decode($result, true)) === null
160 'content' => $result,
163 // we only want the first result fro
[all...]
/plugin/sequencediagram/bower_components/lodash/perf/asset/
H A Dperf-ui.js86 var result;
89 case 'lodash': result = 'dist/lodash.min.js'; break;
92 return basePath + result;
97 var result;
99 case 'lodash': result = 'dist/lodash.min.js'; break;
100 case 'underscore-dev': result = 'vendor/underscore/underscore.js'; break;
102 case 'underscore': result = 'vendor/underscore/underscore-min.js'; break;
105 return basePath + result;
/plugin/top/_test/
H A Ddate.test.php29 $result = $top_helper->best(null,201312);
31 5,$result[0]['value'],
35 $result = $top_helper->best(null,null);
37 12,$result[0]['value'],
41 $result = $top_helper->best('en',null);
43 9,$result[0]['value'],
47 $result = $top_helper->best('en',201302);
49 1,$result[0]['value'],
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/
H A DPluginTest.php50 $result = $this->server->getProperties('', ['{DAV:}displayname']);
54 ], $result);
77 $result = $this->server->getProperties('/files/dest', ['{DAV:}displayname']);
81 ], $result);
84 $result = $this->server->getProperties('/files/source', ['{DAV:}displayname']);
86 $this->assertEquals([], $result);
112 $result = $this->server->getProperties('', ['{DAV:}displayname']);
114 $this->assertEquals([], $result);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Request/
H A DAddressBookQueryReportTest.php26 $result = $this->parse($xml);
44 $result['value']
63 $result = $this->parse($xml);
81 $result['value']
121 $result = $this->parse($xml);
131 $result['value']
166 $result = $this->parse($xml);
231 $result['value']
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php163 $result = $backend->check(
168 …if (!is_array($result) || count($result) !== 2 || !is_bool($result[0]) || !is_string($result[1])) {
172 if ($result[0]) {
173 $this->currentPrincipal = $result[1];
177 $reasons[] = $result[1];
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Backend/
H A DPDO.php230 $result = [];
233 $result[] = $row;
235 return $result;
258 if (!$result) return false;
260 $result['etag'] = '"' . $result['etag'] . '"';
261 return $result;
286 $result = [];
289 $result[] = $row;
291 return $result;
469 $result = [
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DAddressBookQueryTest.php45 $result = $client->parseMultiStatus($response->body);
58 ), $result);
95 $result = $client->parseMultiStatus($response->body);
103 ), $result);
140 $result = $client->parseMultiStatus($response->body);
142 $this->assertEquals(array(), $result);
179 $result = $client->parseMultiStatus($response->body);
187 ), $result);
222 $result = $client->parseMultiStatus($response->body);
233 ), $result);
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/Llk/Rule/
H A DAnalyzer.php75 ->when($result = $analyzer->analyzeRules(['ruleA' => $ruleA]))
77 ->array($result)
99 ->when($result = $analyzer->analyzeRules($rules))
101 ->array($result)
129 ->when($result = $analyzer->analyzeRules(['ruleA' => $ruleA]))
131 ->array($result)
181 ->array($result)
203 ->array($result)
226 ->array($result)
249 ->array($result)
[all …]
/plugin/interwikipaste/
H A Dscript.js129 let result;
137 result = getLocal(pasted);
140 result = getIwl(pasted);
143 if (result) {
150 result = `${openSyntax}${result}|${selected}${closeSyntax}`;
168 result = openSyntax + result;
171 result = result + closeSyntax;
174 pasteText(currentSelection, result, {nosel: true});
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/
H A DExecutionResponse.php25 public $result; variable in Google\\Service\\Script\\ExecutionResponse
30 public function setResult($result) argument
32 $this->result = $result;
39 return $this->result;
/plugin/webdav/vendor/sabre/vobject/lib/
H A DReader.php47 $result = $parser->parse($data, $options);
49 return $result;
70 $result = $parser->parse($data, $options);
72 return $result;
91 $result = $parser->parse($data, $options);
93 return $result;
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DReader.php46 $result = $parser->parse($data, $options);
48 return $result;
70 $result = $parser->parse($data, $options);
72 return $result;
92 $result = $parser->parse($data, $options);
94 return $result;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DCallbackFilter.php64 ->when($result = iterator_to_array($filter))
66 ->array($result)
102 ->when($result = iterator_to_array($filter))
104 ->array($result)
126 ->when($result = iterator_to_array($filter))
128 ->array($result)
166 ->when($result = iterator_to_array($iterator, false))
168 ->array($result)
189 ->when($result = iterator_to_array($iterator))
191 ->array($result)
/plugin/sphinxsearch-was/
H A DPageMapper.php26 …$result = $db->query("CREATE TABLE {$this->_table} ( page varchar(1024), page_crc int(11), hid var…
27 if (!$result) {
43 …$result = $this->_db->query("REPLACE into {$this->_table}(page, page_crc, hid, title, title_text) …
48 if (!$result) {
56 $result = $this->_db->query("select * from {$this->_table}");
57 return $result->fetchAll(PDO::FETCH_ASSOC);
63 $result = $this->_db->query($sql);
64 $rows = $result->fetchAll(PDO::FETCH_ASSOC);
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DError.php55 ->when($result = new SUT('foo', 42, '/hoa/flatland', 153))
57 ->object($result)
65 ->when($result = $exception->raise())
67 ->string($result)
84 ->when($result = SUT::enableErrorHandler(false))
86 ->variable($result)
127 ->when($result = SUT::enableErrorHandler())
129 ->variable($result)
/plugin/sphinxsearch/
H A DPageMapper.php26 …$result = $db->query("CREATE TABLE {$this->_table} ( page varchar(1024), page_crc int(11), hid var…
27 if (!$result) {
44 …$result = $this->_db->query("REPLACE into {$this->_table}(page, page_crc, hid, title, title_text) …
49 if (!$result) {
57 $result = $this->_db->query("select * from {$this->_table}");
58 return $result->fetchAll(PDO::FETCH_ASSOC);
64 $result = $this->_db->query($sql);
65 $rows = $result->fetchAll(PDO::FETCH_ASSOC);

1...<<11121314151617181920>>...80