Home
last modified time | relevance | path

Searched refs:result (Results 101 – 125 of 1997) sorted by relevance

12345678910>>...80

/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/IStream/
H A DLockable.php56 ->when($result = new \Mock\Hoa\Stream\IStream\Lockable())
58 ->object($result)
66 ->when($result = SUT::LOCK_SHARED)
68 ->integer($result)
71 ->when($result = SUT::LOCK_EXCLUSIVE)
73 ->integer($result)
76 ->when($result = SUT::LOCK_RELEASE)
78 ->integer($result)
81 ->when($result = SUT::LOCK_NO_BLOCK)
83 ->integer($result)
H A DTouchable.php56 ->when($result = new \Mock\Hoa\Stream\IStream\Touchable())
58 ->object($result)
66 ->when($result = SUT::OVERWRITE)
68 ->boolean($result)
71 ->when($result = SUT::DO_NOT_OVERWRITE)
73 ->boolean($result)
76 ->when($result = SUT::MAKE_DIRECTORY)
78 ->boolean($result)
81 ->when($result = SUT::DO_NOT_MAKE_DIRECTORY)
83 ->boolean($result)
/plugin/tag/
H A Dhelper.php54 $result = [];
56 $result[] = [
63 $result[] = [
68 $result[] = [
74 $result[] = [
80 $result[] = [
90 $result[] = [
99 $result[] = [
110 return $result;
249 $result
585 uniqueKey($key, $result) global() argument
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php128 $result = bcsub($n, $temp);
131 if ($result[0] == '-') {
133 $result = bcadd($result, $temp);
136 while (bccomp($result, $m) >= 0) {
137 $result = bcsub($result, $m);
140 return $result;
179 $result = bcsub($r1, $r2);
182 if ($result[0] == '-') {
184 $result = bcadd($result, $q);
188 $result = bcsub($result, $n);
[all …]
/plugin/icalevents/vendor/sabre/uri/lib/
H A Dfunctions.php196 $result = parse_url($uri);
197 if (!$result) {
198 $result = _parse_fallback($uri);
202 $result + [
317 $result = [
329 $result['scheme'] = $matches[1];
331 $uri = substr($uri, strlen($result['scheme']) + 1);
347 $result['path'] = substr($uri, 2);
348 $result['host'] = '';
369 $result['path'] = $uri;
[all …]
/plugin/webdav/vendor/sabre/uri/lib/
H A Dfunctions.php196 $result = parse_url($uri);
197 if (!$result) {
198 $result = _parse_fallback($uri);
202 $result + [
317 $result = [
329 $result['scheme'] = $matches[1];
331 $uri = substr($uri, strlen($result['scheme']) + 1);
347 $result['path'] = substr($uri, 2);
348 $result['host'] = '';
369 $result['path'] = $uri;
[all …]
/plugin/xtern/
H A Daction.php115 $event->result = preg_replace("#$srch#", "",$event->result);
116 $event->result = str_replace($srch,"",$event->result);
119 $this->update_wiki_page($event->result, $url) ;
124 …$event->result = preg_replace('/__\s*BROKEN-LINK:__\s*BROKEN-LINK:/ms', '__ BROKEN-LINK:', $event-…
125 …$event->result = preg_replace('/\s*LINK-BROKEN\s*__\s*LINK-BROKEN\s*__/ms', 'LINK-BROKEN__', $even…
126 …$event->result = preg_replace('/_*\s*BROKEN-LINK:_*\s*BROKEN-LINK:/ms', '__BROKEN-LINK: ', $even…
127 … $event->result = preg_replace('/LINK-BROKEN__LINK-BROKEN__/ms', 'LINK-BROKEN__', $event->result);
128 $event->result = preg_replace('/BROKEN-LINK:\s+/ms', 'BROKEN-LINK: ', $event->result);
129 …$event->result = preg_replace('/__BROKEN-LINK: \s*_*\s* BROKEN-LINK:/ms','__ BROKEN-LINK:',$event-…
133 function update_wiki_page(&$result, $url) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DTestDecorator.php51 * @param PHPUnit_Framework_TestResult $result
53 public function basicRun(PHPUnit_Framework_TestResult $result) argument
55 $this->test->run($result);
93 * @param PHPUnit_Framework_TestResult $result
97 public function run(PHPUnit_Framework_TestResult $result = null) argument
99 if ($result === null) {
100 $result = $this->createResult();
103 $this->basicRun($result);
105 return $result;
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DContext.php56 ->when($result = $context->getVariables())
58 ->object($result)
60 ->array(iterator_to_array($result))
90 ->integer($result)
100 ->object($result)
102 ->array(iterator_to_array($result))
164 ->variable($result)
174 ->object($result)
176 ->array(iterator_to_array($result))
243 ->object($result)
[all …]
/plugin/conflictmerger/tests/
H A Dmerge.test.php35 $result;
37 $this->assertTrue($this->action->merge($this->id, $old, $mine, $yours, $result));
49 $result = '';
51 $this->assertFalse($this->action->merge($this->id, $old, $mine, $yours, $result));
52 $this->assertNotEqual('', $result);
63 $result = '';
66 $this->assertNotEqual('', $result);
81 $result = "Previous value";
84 $this->assertEqual('', $result);
101 $result = "Previous value";
[all …]
/plugin/datedifference/
H A Dsyntax.php154 $result = $date_finmsg;
167 $result = "";
169 $result .= "$years years ";
171 $result .= "$years year ";
174 $result .= "$months months ";
176 $result .= "$months month ";
179 $result .= "$days days ";
181 $result .= "$days day ";
184 $result .= "$hours hours ";
186 $result .= "$hours hour ";
[all …]
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DBucket.php56 ->when($result = new SUT('foo'))
58 ->object($result)
60 ->string($result->getData())
88 ->variable($result)
101 ->when($result = $bucket->setSource($sourceA))
103 ->variable($result)
111 ->object($result)
124 ->when($result = $bucket->setData($datumA))
126 ->variable($result)
132 ->when($result = $bucket->setData($datumB))
[all …]
/plugin/crypto/
H A Daction.php87 $result = "";
94 $result = crypto_encrypt($secret.$data, $secret);
97 $result = $e->getMessage();
100 print $result;
106 $result = "";
113 $result = crypto_decrypt($data, $secret);
114 if (strpos($result, $secret) === 0) {
115 $result = substr($result, strlen($secret), strlen($data) - strlen($secret));
117 $result = "";
121 $result = $e->getMessage();
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php39 if (!$result) {
66 if (!$result) {
92 if (!$result) {
313 $result = array();
317 $result[$part] = null;
319 $result[$part] = null;
326 return $result;
415 $result = array();
419 $result[$part] = null;
421 $result[$part] = null;
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php39 if (!$result) {
66 if (!$result) {
92 if (!$result) {
313 $result = array();
317 $result[$part] = null;
319 $result[$part] = null;
326 return $result;
415 $result = array();
419 $result[$part] = null;
421 $result[$part] = null;
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php39 if (!$result) {
66 if (!$result) {
92 if (!$result) {
313 $result = array();
317 $result[$part] = null;
319 $result[$part] = null;
326 return $result;
415 $result = array();
419 $result[$part] = null;
421 $result[$part] = null;
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php14 $result = $mimeDir->parse($input);
16 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
18 $this->assertEquals('nl', $result->LANG->getValue());
22 $result->serialize()
32 $result = $mimeDir->parse($input);
34 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
37 $result->LANG->setValue(['de']);
39 $this->assertEquals('de', $result->LANG->getValue());
44 $result->serialize()
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php14 $result = $mimeDir->parse($input);
16 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
18 $this->assertEquals('nl', $result->LANG->getValue());
22 $result->serialize()
32 $result = $mimeDir->parse($input);
34 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
37 $result->LANG->setValue(array('de'));
39 $this->assertEquals('de', $result->LANG->getValue());
44 $result->serialize()
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php14 $result = $mimeDir->parse($input);
16 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
18 $this->assertEquals('nl', $result->LANG->getValue());
22 $result->serialize()
32 $result = $mimeDir->parse($input);
34 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
37 $result->LANG->setValue(array('de'));
39 $this->assertEquals('de', $result->LANG->getValue());
44 $result->serialize()
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DLanguageTagTest.php14 $result = $mimeDir->parse($input);
16 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
18 $this->assertEquals('nl', $result->LANG->getValue());
22 $result->serialize()
32 $result = $mimeDir->parse($input);
34 $this->assertInstanceOf('Sabre\VObject\Property\VCard\LanguageTag', $result->LANG);
37 $result->LANG->setValue(array('de'));
39 $this->assertEquals('de', $result->LANG->getValue());
44 $result->serialize()
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Darrays.js15 result = _.map([[1, 2, 3], [1, 2, 3]], _.first);
39 result = _.map([[1, 2, 3], [1, 2, 3]], _.rest);
57 result = _.map([[1, 2, 3], [1, 2, 3]], _.initial);
70 result = _.map([[1, 2, 3], [1, 2, 3]], _.last);
203 result = _.intersection([2, 4, 3, 1], [1, 2, 3]);
205 result = _.intersection(null, [1, 2, 3]);
207 result = _.intersection([1, 2, 3], null);
215 result = _([1, 2, 3]).union([2, 30, 1], [1, 40]);
234 result = _([1, 2, 3]).difference([2, 30, 40]);
240 result = _.difference([8, 9, 3, 1], [3, 8]);
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DSemanticContext.php44 $result = new AndOperator($a, $b);
46 return \count($result->operands) === 1 ? $result->operands[0] : $result;
63 $result = new OrOperator($a, $b);
65 return \count($result->operand) === 1 ? $result->operand[0] : $result;
84 * Evaluate the precedence predicates for the context and reduce the result.
96 * as a result o
[all...]
/plugin/runcommand/
H A Dpostaction.php54 $result = ""; variable
57 $result .= "<pre>\n";
59 $result .= $row."\n";
61 $result .= "</pre>\n";
64 $result .= "<p>\n";
66 $result .= $row."\n";
68 $result .= "</p>\n";
77 $result .= p_render('xhtml',$parsedOutput, $info);
83 debug("RESULT=\n".$result, 2, $rcDebugLevel);
84 print $result;
/plugin/farmsync/meta/
H A DPageUpdates.php9 $result = new UpdateResults($page, $target);
15 $result->setMergeResult('new file');
16 $this->results[$target]['passed'][] = $result;
22 $result->setMergeResult('unchanged');
23 $this->results[$target]['passed'][] = $result;
30 $result->setMergeResult('file overwritten');
45 $result->setMergeResult('unchanged');
51 $result->setFinalText($final);
56 $result = new PageConflict($page, $target);
59 $result->setFinalText($final);
[all …]
/plugin/zip/pear/File/
H A DArchive.php329 $result
354 $result
365 $result
421 unset($result);
422 $result = $tmp;
443 $result
456 $result
467 unset($result);
471 return $result;
737 return $result;
[all …]

12345678910>>...80