Home
last modified time | relevance | path

Searched refs:result (Results 326 – 350 of 1997) sorted by path

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

/plugin/combo/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriver.php140 $result = $this->driver->executeScript($script, $arguments);
148 return $result;
168 $result = $this->driver->executeAsyncScript($script, $arguments);
175 return $result;
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverExpectedCondition.php575 * @return mixed The negation of the result of the given condition.
581 $result = call_user_func($condition->getApply(), $driver);
583 return !$result;
/plugin/combo/vendor/salesforce/handlebars-php/
H A DCODE_OF_CONDUCT.md82 and will result in a response that is deemed necessary and appropriate to the
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DParser.php63 $result = array_pop($stack);
64 if ($result === null) {
70 if (!array_key_exists(Tokenizer::NODES, $result)
71 && isset($result[Tokenizer::NAME])
72 && $result[Tokenizer::NAME] == $token[Tokenizer::NAME]
74 $result[Tokenizer::NODES] = $newNodes;
75 $result[Tokenizer::END] = $token[Tokenizer::INDEX];
76 array_push($stack, $result);
79 array_unshift($newNodes, $result);
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php26 * @param string $result expected data
32 public function testBasicTags($src, $data, $result) argument
36 $this->assertEquals($result, $engine->render($src, $data));
54 array('data' => 'result'),
55 'result'
59 array('data' => array('key' => 'result')),
60 'result'
71 * @param string $result expected data
77 public function testSimpleHelpers($src, $data, $result) argument
83 $this->assertEquals($result,
224 testDataVariables($src, $data, $result, $enableDataVariables) global() argument
[all...]
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php246 $result = '';
257 $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';
261 $result .= $uchr;
265 return $result;
268 return \iconv('UTF-8', $encoding.'//IGNORE', $result);
574 $result = [];
578 $result[] = mb_substr($string, $i, $split_length, $encoding);
581 return $result;
H A Dbootstrap.php58 function mb_parse_str($string, &$result = []) { parse_str($string, $result); return (bool) $result; } argument
H A Dbootstrap80.php54 function mb_parse_str(?string $string, &$result = []): bool { parse_str((string) $string, $result); return (bool) $result; } argument
/plugin/combo/vendor/symfony/process/
H A DProcess.php1273 static $result;
1275 if (null !== $result) {
1276 return $result;
1280 return $result = false;
1283 return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1425 $result = $this->processPipes->readAndWrite($blocking, $close);
1428 foreach ($result as $type => $data) {
/plugin/combo/vendor/symfony/yaml/
H A DInline.php81 $result = self::parseSequence($value, $flags, $i, $references);
85 $result = self::parseMapping($value, $flags, $i, $references);
89 $result = self::parseScalar($value, $flags, null, $i, true, $references);
98 return new TaggedValue($tag, $result);
101 return $result;
174 // Preserve float data type since storing a whole number will result in integer value.
/plugin/commonmark/
H A DREADME.md11 3. After pre-rendering, passes the result to DW parser and process as usual
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php90 if (($result = $renderer->render($node, $this)) !== null) {
91 return $result;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DFencedCodeRenderer.php70 #$result = Xml::escape($node->getStringContent());
71 $result = $node->getLiteral();
73 $result = '<' . $entertag . ">\n" . $result . "</" . $exittag . ">";
75 return $result;
H A DHeadingRenderer.php39 $result = $heading . $DWRenderer->renderNodes($node->children()) . strrev($heading);
41 return $result;
H A DListBlockRenderer.php46 $result =
52 $result = preg_replace("/\n/", "\n ", $result); # add two-space indentation
53 $result = preg_replace("/\n(\s\s)+\n/", "\n", $result); # remove unwanted newline
54 $result = preg_replace("/<li>/", $tag, $result); # add DW list bullet
55 return " " . $result;
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...]
H A DParagraphRenderer.php37 $result = $DWRenderer->renderNodes($node->children());
38 $result = preg_replace('/\n/', ' ', $result); # remove unwanted newline for DW
40 return $result . $DWRenderer->getOption('inner_separator', "\n");;
H A DTableCellRenderer.php48 $result = $separator . $lmargin . $DWRenderer->renderNodes($node->children()) . $rmargin;
49 return $result;
H A DTableRowRenderer.php32 $result = $DWRenderer->renderNodes($node->children());
33 $result = preg_replace('/\n/', "", $result); # row on one line
34 return $result . '|';
H A DTableSectionRenderer.php36 $result = $DWRenderer->renderNodes($node->children());
37 return $result;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DFootnoteRefRenderer.php55 $result = '(('. $text. '))';
56 return $result;
H A DImageRenderer.php61 $result = '{{' . $attrs['src'];
62 $attrs['alt'] ? $result.= '|' . $attrs['alt'] . '}}' : $result.= '}}';
64 return $result;
H A DLinkRenderer.php50 $result = '[[' . $attrs['href'] . '|' . $DWRenderer->renderNodes($node->children()) . ']]';
51 return $result;
/plugin/commonmark/vendor/league/commonmark/
H A DREADME.md117 [SemVer](http://semver.org/) is followed closely. Minor and patch releases should not introduce breaking changes to the codebase; however, they might change the resulting AST or HTML output of parsed Markdown (due to bug fixes, spec changes, etc.) As a result, you might get slightly different HTML, but any custom code built onto this library should still function correctly.
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/Generator/
H A DCallbackGenerator.php39 $result = \call_user_func($this->callback, $mention);
40 if ($result === null) {
44 if ($result instanceof AbstractInline && ! ($result instanceof Mention)) {
45 return $result;
48 if ($result instanceof Mention && $result->hasUrl()) {

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