Home
last modified time | relevance | path

Searched refs:sprintf (Results 151 – 175 of 1115) sorted by last modified time

12345678910>>...45

/plugin/combo/vendor/php-webdriver/webdriver/lib/Exception/
H A DUnexpectedTagNameException.php16 sprintf(
/plugin/combo/vendor/symfony/yaml/
H A DParser.php55 throw new ParseException(sprintf('File "%s" does not exist.', $filename));
59 throw new ParseException(sprintf('File "%s" cannot be read.', $filename));
251 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);
254 throw new ParseException(sprintf('Reference "%s" does not exist.', $refName), $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
327 throw new ParseException(sprintf('Duplicate key "%s" detected.', $key), $this->getRealCurrentLineNb() + 1, $this->currentLine);
350 throw new ParseException(sprintf('Duplicate key "%s" detected.', $key), $realCurrentLineNbKey + 1, $this->currentLine);
360 throw new ParseException(sprintf('Duplicate key "%s" detected.', $key), $this->getRealCurrentLineNb() + 1, $this->currentLine);
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);
735 throw new ParseException(sprintf('Reference "%s" does not exist.', $value), $this->currentLineNb + 1, $this->currentLine, $this->filename);
775 throw new ParseException(sprintf('Unexpecte
[all...]
H A DUnescaper.php111 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
H A DDumper.php84 $output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $blockIndentationIndicator, $blockChompingIndicator);
90 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
98 $output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value->getTag());
104 $output .= sprintf(' |%s', $blockIndentationIndicator);
107 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
131 $output .= sprintf('%s%s%s%s',
145 $output = sprintf('%s!%s', $prefix ? $prefix.' ' : '', $value->getTag());
151 $output .= sprintf(' |%s', $blockIndentationIndicator);
154 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
/plugin/combo/ComboStrap/
H A DSqlite.php132 return (preg_match(sprintf('%1$s%2$s%1$s%3$s', $delimiter, $pattern, $modifiers), $data) > 0);
241 fwrite(STDERR, "Permission " . substr(sprintf('%o', fileperms($dbFile)), -4) . "\n");
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php541 \sprintf('token recognition error at: \'%s\'', $text),
H A DParser.php912 echo \sprintf("Decision %d:\n%s", $dfa->decision, $dfa->toString($this->getVocabulary()));
H A DParserTraceListener.php26 echo \sprintf(
35 echo \sprintf(
47 echo \sprintf(
H A DInputStream.php51 throw new \InvalidArgumentException(\sprintf('File not found at %s.', $path));
H A DRecognizer.php164 return \sprintf('line %d:%d', $token->getLine(), $token->getCharPositionInLine());
H A DRuntimeMetaData.php134 \sprintf(
146 \sprintf(
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfig.php184 return \sprintf(
H A DATNDeserializer.php196 throw new \InvalidArgumentException(\sprintf(
209 throw new \InvalidArgumentException(\sprintf(
812 throw new \InvalidArgumentException(\sprintf(
886 throw new \InvalidArgumentException(\sprintf(
925 throw new \InvalidArgumentException(\sprintf(
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerModeAction.php86 return \sprintf('mode(%d)', $this->mode);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DRangeTransition.php56 return \sprintf(
H A DRuleTransition.php71 return \sprintf('rule_%d:%d,%s', $this->ruleIndex, $this->precedence, $this->followState);
/plugin/combo/vendor/symfony/process/Exception/
H A DProcessTimedOutException.php34 parent::__construct(sprintf(
66 throw new \LogicException(sprintf('Unknown timeout type "%d".', $this->timeoutType));
/plugin/combo/vendor/symfony/process/
H A DPhpProcess.php58 throw new LogicException(sprintf('The "%s()" method cannot be called when using "%s".', __METHOD__, self::class));
H A DProcess.php349 throw new RuntimeException(sprintf('The provided cwd "%s" does not exist.', $this->cwd));
1246 throw new LogicException(sprintf('Invalid option "%s" passed to "%s()". Supported options are "%s".', $key, __METHOD__, implode('", "', $existingOptions)));
1509 exec(sprintf('taskkill /F /T /PID %d 2>&1', $pid), $output, $exitCode);
1512 throw new RuntimeException(sprintf('Unable to kill the process (%s).', implode(' ', $output)));
1522 } elseif ($ok = proc_open(sprintf('kill -%d %d', $signal, $pid), [2 => ['pipe', 'w']], $pipes)) {
1527 throw new RuntimeException(sprintf('Error while sending signal "%s".', $signal));
1596 throw new LogicException(sprintf('Process must be started before calling "%s()".', $functionName));
1608 throw new LogicException(sprintf('Process must be terminated before calling "%s()".', $functionName));
1638 throw new InvalidArgumentException(sprintf('Command line is missing a value for parameter "%s": ', $matches[1]).$commandline);
H A DProcessUtils.php64 throw new InvalidArgumentException(sprintf('"%s" only accepts strings, Traversable objects or stream resources.', $caller));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DPredPrediction.php28 return \sprintf('(%s, %d)', (string) $this->pred, $this->alt);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php55 return \sprintf('%s(\'%s\')', self::class, $symbol);
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php123 throw new RuntimeException(sprintf('File or directory "%s" is not readable.', $filename));
167 throw new InvalidArgumentException(sprintf('The format "%s" is not supported.', $this->format));
183 $io->comment('<info>OK</info>'.($info['file'] ? sprintf(' in %s', $info['file']) : ''));
186 $io->text('<error> ERROR </error>'.($info['file'] ? sprintf(' in %s', $info['file']) : ''));
187 $io->text(sprintf('<error> >> %s</error>', $info['message']));
200 $io->success(sprintf('All %d YAML files contain valid syntax.', $countFiles));
202 $io->warning(sprintf('%d YAML files have valid syntax and %d contain errors.%s', $countFiles - $erroredFiles, $erroredFiles, $suggestTagOption ? ' Use the --parse-tags option if you want parse custom tags.' : ''));
/plugin/combo/vendor/symfony/yaml/Exception/
H A DParseException.php117 $this->message .= sprintf(' in %s', json_encode($this->parsedFile, \JSON_UNESCAPED_SLASHES | \JSON_UNESCAPED_UNICODE));
121 $this->message .= sprintf(' at line %d', $this->parsedLine);
125 $this->message .= sprintf(' (near "%s")', $this->snippet);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxProfile.php80 $value = sprintf('"%s"', $value);
83 $value = sprintf('%d', $value);
147 $content .= sprintf("user_pref(\"%s\", %s);\n", $key, $value);

12345678910>>...45