Home
last modified time | relevance | path

Searched refs:implode (Results 201 – 225 of 989) sorted by path

12345678910>>...40

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfigSet.php381 \implode(', ', $this->configs),
H A DATNDeserializer.php752 $hex = \strtoupper(\bin2hex(\implode(\array_map('chr', $bb))));
H A DLexerActionExecutor.php212 return \sprintf('LexerActionExecutor[%s]', \implode(', ', $this->lexerActions));
H A DParserATNSimulator.php669 \implode(', ', $altSubSets),
805 \implode(',', $altSubSets),
1355 $altToPred === null ? '' : \implode(', ', $altToPred)
2082 \implode(', ', $this->parser->getRuleInvocationStack())
2142 \implode(', ', $this->parser->getRuleInvocationStack())
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php76 return $baseStateStr . '=>[' . \implode(', ', $state->predicates) . ']';
H A DDFAState.php137 $s .= \sprintf('[%s]', \implode(', ', $this->predicates));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php142 return \implode(\array_slice($this->characters, $start, $stop - $start + 1));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DBitSet.php72 return \sprintf('{%s}', \implode(', ', $this->values()));
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DTokenMismatchException.php33 ' while one of '.implode(", ", $expectedTokenStrings).' was expected.'
H A DUnexpectedEndOfFileException.php31 implode(", ", $expectedTokenStrings).' was expected.'
/plugin/combo/vendor/composer/
H A DInstalledVersions.php268 return implode(' || ', $ranges);
H A Dplatform_check.php17 fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
19 echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
23 'Composer detected issues in your platform: ' . implode(' ', $issues),
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php253 return implode(' ', $this->cronParts);
H A DDayOfWeekField.php97 $value = implode('-', $parts);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DCustomWebDriverCommand.php69 implode(', ', $allowedMethods)
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverKeys.php121 $key = implode('', $key) . self::NULL; // the NULL clears the input state (eg. previous modifiers)
130 return implode('', $encoded);
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Loader/
H A DFilesystemLoader.php130 $fileName .= implode('/', $fileParts);
/plugin/combo/vendor/symfony/process/
H A DPhpExecutableFinder.php56 $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
H A DProcess.php316 $commandline = implode(' ', array_map([$this, 'escapeArgument'], $commandline));
989 return \is_array($this->commandline) ? implode(' ', array_map([$this, 'escapeArgument'], $this->commandline)) : $this->commandline;
1246 throw new LogicException(sprintf('Invalid option "%s" passed to "%s()". Supported options are "%s".', $key, __METHOD__, implode('", "', $existingOptions)));
1512 throw new RuntimeException(sprintf('Unable to kill the process (%s).', implode(' ', $output)));
/plugin/combo/vendor/symfony/yaml/
H A DInline.php146 return sprintf('{ %s }', implode(', ', $output));
240 return sprintf('[%s]', implode(', ', $output));
249 return sprintf('{ %s }', implode(', ', $output));
278 throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $delimiters)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
296 } elseif (Parser::preg_match('/^(.*?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match)) {
H A DParser.php251 throw new ParseException(sprintf('Circular reference [%s] detected for reference "%s".', implode(', ', array_merge(\array_slice($this->refsBeingParsed, $pos), [$refName])), $refName), $this->currentLineNb + 1, $this->currentLine, $this->filename);
674 return implode("\n", $data);
732 throw new ParseException(sprintf('Circular reference [%s] detected for reference "%s".', implode(', ', array_merge(\array_slice($this->refsBeingParsed, $pos), [$value])), $value), $this->currentLineNb + 1, $this->currentLine, $this->filename);
922 $text = implode("\n", $blockLines);
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php
/plugin/commonmark/vendor/composer/
H A DInstalledVersions.php158 return implode(' || ', $ranges);
H A Dplatform_check.php17 fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
19 echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
23 'Composer detected issues in your platform: ' . implode(' ', $issues),
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DFencedCode.php

12345678910>>...40