Home
last modified time | relevance | path

Searched refs:result (Results 851 – 875 of 1997) sorted by relevance

1...<<31323334353637383940>>...80

/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DException.php55 ->when($result = new SUT('foo', 0))
57 ->object($result)
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DException.php55 ->when($result = new SUT('foo', 0))
57 ->object($result)
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DException.php55 ->when($result = new SUT('foo', 0))
57 ->object($result)
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/
H A DToken.php498 $result = [
514 $result['category'] = $matches[1];
518 $result['package'] = $matches[1];
519 $result['fullPackage'] = $matches[1];
523 $result['subpackage'] = $matches[1];
524 $result['fullPackage'] .= '.' . $matches[1];
527 if (empty($result['fullPackage'])) {
534 return $result;
545 $result = '';
550 $result = implode($join, $parts);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php385 $result = $this->server->updateProperties($path, $newProperties);
396 foreach ($result as $prop => $code) {
417 foreach ($result as $propertyName => $code) {
590 $result = $this->server->createCollection($path, $mkcol);
592 if (is_array($result)) {
597 $this->server->generateMultiStatus([$result])
712 $result = $this->server->xml->parse(
891 if (isset($result['{http://sabredav.org/ns}sync-token'])) {
892 return $result['{http://sabredav.org/ns}sync-token'];
894 if (isset($result['{DAV:}sync-token'])) {
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php385 $result = $this->server->updateProperties($path, $newProperties);
396 foreach ($result as $prop => $code) {
417 foreach ($result as $propertyName => $code) {
590 $result = $this->server->createCollection($path, $mkcol);
592 if (is_array($result)) {
597 $this->server->generateMultiStatus([$result])
712 $result = $this->server->xml->parse(
893 if (isset($result['{http://sabredav.org/ns}sync-token'])) {
894 return $result['{http://sabredav.org/ns}sync-token'];
896 if (isset($result['{DAV:}sync-token'])) {
[all …]
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessUtilsTest.php25 public function testEscapeArgument($result, $argument) argument
27 $this->assertSame($result, ProcessUtils::escapeArgument($argument));
/plugin/data-au/_test/
H A Dsyntax_plugin_data_table.test.php34 $result = $plugin->handle($this->exampleEntry, 0, 10, $handler);
133 $this->assertEquals($dataau, $result, 'Data array corrupted');
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Xml/Filter/
H A DAddressData.php49 $result = [
55 return $result;
/plugin/publistx/bib2tpl/
H A Dhelper.inc.php65 $result = '00';
79 $result = $number;
85 return $result;
/plugin/publist/bib2tpl/
H A Dhelper.inc.php65 $result = '00';
79 $result = $number;
85 return $result;
/plugin/publistf/bib2tpl/
H A Dhelper.inc.php65 $result = '00';
79 $result = $number;
85 return $result;
/plugin/quizlib/
H A Dscript.js13 …var quizScorePercent = quiz.result.scorePercentFormatted; // The unformatted percentage is a decim…
16 document.getElementById('quiz-score').innerHTML = quiz.result.score.toString();
17 document.getElementById('quiz-max-score').innerHTML = quiz.result.totalQuestions.toString();
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStreamDecoratorTrait.php70 $result = call_user_func_array([$this->stream, $method], $args);
73 return $result === $this->stream ? $this : $result;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStreamDecoratorTrait.php62 $result = call_user_func_array(array($this->stream, $method), $args);
64 // Always return the wrapped object if the result is a return $this
65 return $result === $this->stream ? $this : $result;
/plugin/openlayersmap/helper/
H A Dstaticmap.php
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/
H A DRepeatingElementsTest.php24 $result = $service->parse($xml);
31 $this->assertEquals($expected, $result);
/plugin/findologicxmlexport/vendor/hoa/ustring/Test/Unit/
H A DIssue.php55 ->when($result = LUT::toCode(chr(160)))
57 ->integer($result)
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php975 $result = [];
979 $result[] = $item->format('Y-m-d H:i:s');
981 if ($parser->isInfinite() && count($result) >= count($expected)) {
990 $result
/plugin/memcache/classes/
H A Dmemcache_fakecache.class.php47 …if ($result = (!file_exists(static::$cache_dir.static::normalize_key($key)) && @file_put_contents(…
51 return (bool)$result;
56 …if ($result = (@file_put_contents(static::$cache_dir.static::normalize_key($key),gzcompress(serial…
60 return (bool)$result;
/plugin/aclplusregex/
H A Daction.php22 * 7) cache result of step 1 to 7 in the singleton class
77 $previous = $event->result ?: AUTH_NONE;
80 $event->result = max($previous, $permisson);
190 $result = [];
204 $result[] = $this->cleanID(explode("\n", $match)[0]);
208 return $result;
/plugin/accscounter/
H A Daction.php192 $result = array();
196 $result = array_merge($result, $this->getFiles($file));
199 $result[] = $file;
202 return $result;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientReferralHandler.php65 $result = $messageFrom->getResponse();
68 $message = $result instanceof LdapResult ? $result->getDiagnosticMessage() : 'Referral response encountered.';
69 $referrals = $result instanceof LdapResult ? $result->getReferrals() : [];
/plugin/sql2wiki/action/
H A Dsqlite.php158 $result = $sqliteDb->queryAll($query, $params);
159 if (isset($result[0])) { // generate header if any row exists
160 array_unshift($result, array_keys($result[0]));
162 $query_result_csv = "\n" . Csv::arr2csv($result); // "\n" to wrap the <sql2wiki> tag
163 $logger_details['results'][] = $result;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DPredictionMode.php28 * may result in syntax errors for grammar and input combinations which are
304 * checking to see if the merged result is either `x` orv`x'`. If the `x`
574 $result = 0;
579 if ($result === 0) {
580 $result = (int) $minAlt;
581 } elseif ($result !== $minAlt) {
587 return $result;

1...<<31323334353637383940>>...80