Home
last modified time | relevance | path

Searched refs:result (Results 1176 – 1200 of 1997) sorted by relevance

1...<<41424344454647484950>>...80

/plugin/fckg/fckeditor/editor/plugins/range/
H A Dfckplugin.js228 while(result = regex.exec(str)) {
230 for(i in result) {
237 if(result[i].length) {
239 var textnode = doc.createTextNode(result[i]);
245 if(result[i].length) {
253 var textnode = doc.createTextNode(result[i]);
/plugin/sqlcomp/
H A Dsyntax.php404 $dbArray = pg_fetch_array($result, NULL, PGSQL_ASSOC);
505 $result = $dbHandle->query($Query);
506 if(!$result)
510 if($result->rowCount() > 0)
511 $dbArray[] = array( $this->getLang("affected") => $result->rowCount() );
513 while($row = $result->fetch(PDO::FETCH_ASSOC))
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php435 $result = [];
454 $result[] = $props;
463 …$this->server->httpResponse->setBody($this->server->generateMultiStatus($result, $prefer['return']…
751 $result = HTTP\Util::negotiate(
768 $mimeType = $result;
769 switch ($result) {
/plugin/sketchcanvas/phplib/
H A Dspyc.php89 private $result; variable in Spyc
411 $this->result = array();
461 return $this->result;
730 $value = $this->result;
762 $this->result[$key] = $value;
764 $this->result[] = $value; end ($this->result); $key = key ($this->result);
774 $history[] = $_arr = $this->result;
807 $this->result
[all...]
/plugin/batchedit/
H A Dengine.php318 $result = FALSE;
322 $result = TRUE;
327 return $result;
334 $result = FALSE;
338 $result = TRUE;
343 return $result;
350 $result = FALSE;
354 $result = TRUE;
359 return $result;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js1279 result: value ? value.result : undefined
5869 result.tl = this.n2l(result.left) + result.top;
5870 result.br = this.n2l(result.right) + result.bottom;
5871 result.dimensions = "".concat(result.tl, ":").concat(result.br);
41558 this.result = result;
41576 if (result && result instanceof Result) return result;
41585 if (typeof result == 'object' && result && result instanceof Result) return result;
42033 ~indexOf(result, key) || result.push(key);
42877 if (result.error) throw result.value;
43075 if (result.error) reject(result.value);
[all …]
/plugin/schedule/
H A Dschedules.class.php413 $result = array ();
415 return $result;
423 return $result;
431 $result = array ();
438 return $result;
1159 $result= '';
1168 $result .=
1177 return $result;
1184 $result = array ();
1197 $result = '';
[all …]
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/
H A DMarkdownRendererTrait.php34 $result = substr($this->renderer->doc, $renderPos);
37 return $result;
41 $result = '';
45 $result .= $block[1];
49 return $result;
/plugin/webexteamsnotifier/
H A Daction.php103 $result = curl_exec($ch);
106 if ($result === false){
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dscalar_type_declarations.phpt55 $result = $this->__phpunit_getInvocationMocker()->invoke(
61 return $result;
H A Dclass_partial.phpt55 $result = $this->__phpunit_getInvocationMocker()->invoke(
61 return $result;
H A Dnamespaced_class_partial.phpt57 $result = $this->__phpunit_getInvocationMocker()->invoke(
63 return $result;
H A Dnamespaced_interface.phpt51 $result = $this->__phpunit_getInvocationMocker()->invoke(
57 return $result;
H A Dnullable_types.phpt55 $result = $this->__phpunit_getInvocationMocker()->invoke(
61 return $result;
H A Dreturn_type_declarations_nullable.phpt53 $result = $this->__phpunit_getInvocationMocker()->invoke(
59 return $result;
H A Dreturn_type_declarations_object_method.phpt56 $result = $this->__phpunit_getInvocationMocker()->invoke(
62 return $result;
H A Dreturn_type_declarations_self.phpt53 $result = $this->__phpunit_getInvocationMocker()->invoke(
59 return $result;
/plugin/structrowcolor/
H A Dstruct.php89 $result = $searchConfig->execute();
90 foreach ($result as $rownum => $row) {
/plugin/rocketchatnotifier/
H A Daction.php108 $result = curl_exec($ch);
111 if ($result === false){
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/
H A Dclass_with_deprecated_method.phpt57 $result = $this->__phpunit_getInvocationMocker()->invoke(
63 return $result;
/plugin/stale/_test/
H A DbaseTest.php56 $result = $stale->deleteSitemap();
57 $this->assertEquals(true, $result);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DValidateFilterTest.php12 function testFilter($input, $filters, $test, $result, $message = null) { argument
14 if ($result) {
/plugin/combo/ComboStrap/
H A DTemplate.php118 $result = preg_match_all($pattern, $this->_string, $matches);
119 if ($result >= 1) {
/plugin/imapmarkers/
H A Djquery.imagemapster.js346 return result;
469 result = $(),
475 result = result.add(e);
479 return result;
604 result,
1106 return result;
1793 return result;
2550 result += (result ? ',' : '') + this.key;
2553 return result;
2566 result,
[all …]
/plugin/bpmnio/vendor/bpmn-js/dist/assets/
H A Ddiagram-js.css935 .djs-search-result {
944 color: var(--search-result-highlight-color);
947 .djs-search-result-primary {
951 .djs-search-result-secondary {
956 .djs-search-result:hover {
957 background: var(--search-result-selected-color);
960 .djs-search-result-selected {
961 background: var(--search-result-selected-color);
964 .djs-search-result-selected:hover {
965 background: var(--search-result-selected-color);
[all …]

1...<<41424344454647484950>>...80