Home
last modified time | relevance | path

Searched refs:result (Results 151 – 175 of 1997) sorted by relevance

12345678910>>...80

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMainTest.php91 $result = [];
118 $result
144 $result = [];
166 $result
207 $result
260 $result
313 $result
366 $result
417 $result
473 $result
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMainTest.php118 $result
166 $result
207 $result
260 $result
313 $result
366 $result
417 $result
473 $result
526 $result
579 $result
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMainTest.php118 $result
166 $result
207 $result
260 $result
313 $result
366 $result
417 $result
473 $result
526 $result
579 $result
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMainTest.php118 $result
166 $result
207 $result
260 $result
313 $result
366 $result
417 $result
473 $result
526 $result
579 $result
[all …]
/plugin/fedauth/Auth/Yadis/
H A DXRDS.php60 $result = array();
68 return $result;
114 $result = array();
122 return $result;
156 $result = array();
159 $result = array_merge($result, $new_uris);
162 $result = array_merge($result,
165 return $result;
407 $result = array_merge($result, $this->serviceList[$pri]);
472 $result = array_merge($result, $filtered[$pri]);
[all …]
/plugin/wikistyle2html/
H A Dscript.js91 var result;
179 result = HeaderSplit[0];
184 bodyInnerHTML = result;
230 var result;
235 result = Headers[j].innerHTML;
238 result = HeaderSplit[0];
244 Headers[j].innerHTML = result;
251 result = HeaderSplit[0];
262 result = Headers[j].innerHTML;
265 result = HeaderSplit[0];
[all …]
/plugin/openid/Auth/Yadis/
H A DXRDS.php64 $result = [];
72 return $result;
114 $result = [];
122 return $result;
156 $result = [];
159 $result = array_merge($result, $new_uris);
162 $result = array_merge($result,
165 return $result;
422 $result = array_merge($result, $this->serviceList[$pri]);
487 $result = [];
[all …]
H A DXML.php178 if (!$result) {
183 if (!$result->nodeset) {
188 return $result->nodeset;
202 $result = [];
210 return $result;
284 $result = @$this->xpath->query($xpath);
289 if (!$result) {
293 for ($i = 0; $i < $result->length; $i++) {
294 $n[] = $result->item($i);
317 $result = [];
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DMockHandler.php9 * Ring handler that returns a canned response or evaluated function result.
14 private $result; variable in GuzzleHttp\\Ring\\Client\\MockHandler
21 * @param array|FutureArrayInterface|callable $result Mock return value.
23 public function __construct($result) argument
25 $this->result = $result;
31 $response = is_callable($this->result)
32 ? call_user_func($this->result, $request)
33 : $this->result;
/plugin/simplechat/
H A Dajax.php11 $result=""; variable
34 $result = "Commands:<br>"; variable
35 $result .= "/me action - emote an action. (/me smiles)<br>";
36 $result .= "/time - display server time.<br>";
37 $result .= "/flip - user flips a coin.<br>";
38 $result .= "/roll # - user rolls a # sided dice (defaults 100).<br>";
51 $result = ""; variable
56 $result = ""; variable
62 if( $linecount >= $startline ) $result .= $line;
71 $result .= (string)($linecount-1); // last line in response is the new current count
[all …]
/plugin/simpleindex/
H A Dsyntax.php50 $result = array();
51 search($result,$conf['datadir'],'search_index',array('ns' => $ns));
52 simpleindex_del($result,$data);
53 $renderer->doc.=html_buildlist($result,'idx','html_list_index','html_li_index');
61 function simpleindex_del(&$result,$dels){ argument
63 $temp=$result;
64 $result=array();
67 $result[]=$value;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DListItemRenderer.php39 $result = $DWRenderer->renderNodes($node->children());
40 if (\substr($result, 0, 1) === '<' && \substr($result, 0, 5) !== '<del>' && !$this->startsTaskListItem($node)) {
41 $result = "\n" . $result;
43 if (\substr($result, -1, 1) === '>') {
44 $result .= "\n";
47 $result = preg_replace('/\n\n/', "\n", $result); # remove unwanted newline for DW
49 return "<li>" . $result;
[all...]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DArrayTest.php32 $result = $this->serializer->toArray($order);
34 self::assertEquals($expected, $result);
48 $result = $this->serializer->toArray($input);
50 self::assertEquals([$input], $result);
70 $result = $this->serializer->fromArray($data, 'JMS\Serializer\Tests\Fixtures\Order');
72 self::assertEquals($expected, $result);
77 $result = $this->serializer->toArray(new Author(null));
79 self::assertSame([], $result);
87 $result = $this->serializer->toArray($list);
88 self::assertSame(['authors' => [[]]], $result);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingResponseControl.php57 protected $result;
65 * @param int $result argument
68 public function __construct(int $result, ?string $attribute = null)
70 $this->result = $result;
80 return $this->result;
103 $result = $sorting->getChild(0);
105 if (!$result instanceof EnumeratedType) {
110 $result->getValue(),
122 $this->controlValue = Asn1::sequence(Asn1::enumerated($this->result));
54 protected $result; global() variable in FreeDSx\\Ldap\\Control\\Sorting\\SortingResponseControl
[all...]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDateTimeParser.php39 if (!$result) {
69 if (!$result) {
100 if (!$result) {
328 $result = [];
331 $result[$part] = null;
333 $result[$part] = null;
339 return $result;
425 $result = [];
428 $result[$part] = null;
430 $result[$part] = null;
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDateTimeParser.php39 if (!$result) {
70 if (!$result) {
102 if (!$result) {
338 $result = [];
342 $result[$part] = null;
344 $result[$part] = null;
351 return $result;
441 $result = [];
445 $result[$part] = null;
447 $result[$part] = null;
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js956 result = result === undefined ? current : (result + current);
2938 result || (result = []);
2950 result[result.length] = value;
4365 result = result.value();
5925 result = result === iteratee ? baseIteratee : result;
12400 return result === result ? (remainder ? result - remainder : result) : 0;
15124 result = result.slice(0, index);
16800 lodash.result = result;
16960 result = result.takeRight(-start);
16962 result = result.drop(start);
[all …]
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js956 result = result === undefined ? current : (result + current);
2938 result || (result = []);
2950 result[result.length] = value;
4365 result = result.value();
5925 result = result === iteratee ? baseIteratee : result;
12400 return result === result ? (remainder ? result - remainder : result) : 0;
15124 result = result.slice(0, index);
16800 lodash.result = result;
16960 result = result.takeRight(-start);
16962 result = result.drop(start);
[all …]
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DListener.php60 ->when($result = new SUT($source, $ids))
62 ->object($result)
64 ->boolean($result->listenerExists('foo'))
66 ->boolean($result->listenerExists('bar'))
68 ->boolean($result->listenerExists('baz'))
85 ->object($result)
120 ->object($result)
137 ->object($result)
151 ->object($result)
167 ->object($result)
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DPHP.php187 $result->startTest($test);
193 $result,
276 $result->addError(
296 $result->addError(
329 $result->addError(
335 $result->addError(
341 $result->addError(
347 $result->addError(
353 $result->addWarning(
359 $result->addFailure(
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestCase.php119 * @param PHPUnit_Framework_TestResult $result
128 if ($result === null) {
137 $result->startTest($this);
151 if ($result->enforcesTimeLimit()) {
193 $result->addFailure(
206 $result->addError($this, $t, $time);
208 $result->addError($this, $e, $time);
212 $result->addFailure(
231 $result->endTest($this, $time);
233 return $result;
[all …]
/plugin/statistics/inc/
H A DStatisticsQuery.class.php21 $result = $this->hlp->runSQL($sql);
23 if(is_array($result)) foreach($result as $row) {
38 $result = $this->hlp->runSQL($sql);
40 $data['users'] = max($result[0]['users'] - 1, 0); // subtract empty user
41 $data['sessions'] = $result[0]['sessions'];
42 $data['pageviews'] = $result[0]['views'];
43 $data['visitors'] = $result[0]['visitors'];
51 $result = $this->hlp->runSQL($sql);
52 $data['bouncerate'] = $result[
[all...]
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DIteratorIterator.php59 ->when($result = $iteratoriterator->getInnerIterator())
61 ->object($result)
72 ->when($result = iterator_to_array($iteratoriterator))
74 ->array($result)
92 ->when($result = iterator_to_array($iteratoriterator, false))
94 ->array($result)
112 ->when($result = iterator_to_array($iteratoriterator, false))
114 ->array($result)
141 ->when($result = iterator_to_array($iteratoriterator, false))
143 ->array($result)
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/IStream/
H A DPointable.php56 ->when($result = new \Mock\Hoa\Stream\IStream\Pointable())
58 ->object($result)
66 ->when($result = SUT::SEEK_SET)
68 ->integer($result)
71 ->when($result = SUT::SEEK_CURRENT)
73 ->integer($result)
76 ->when($result = SUT::SEEK_END)
78 ->integer($result)
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Combinatorics/Combination/
H A DCartesianProduct.php56 ->when($result = iterator_to_array($iterator))
58 ->array($result)
66 ->when($result = iterator_to_array($iterator))
68 ->array($result)
80 ->when($result = iterator_to_array($iterator))
82 ->array($result)
102 ->when($result = iterator_to_array($iterator))
104 ->array($result)

12345678910>>...80