Home
last modified time | relevance | path

Searched refs:int (Results 326 – 350 of 743) sorted by path

1...<<11121314151617181920>>...30

/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DToken.php115 public function __construct(int $type = 0, string $content = '', int $position = -1) {
126 * @return int|string
187 public static function typeToString(int $type): string {
/plugin/combo/vendor/paragonie/random_compat/
H A Dpsalm-autoload.php9 $int = random_int(0, 65536); variable
/plugin/combo/vendor/symfony/polyfill-ctype/
H A DCtype.php207 * @param mixed $int
212 private static function convert_int_to_char_for_ctype($int, $function) argument
214 if (!\is_int($int)) {
215 return $int;
218 if ($int < -128 || $int > 255) {
219 return (string) $int;
223 @trigger_error($function.'(): Argument of type int will be interpreted as string in the future', \E_USER_DEPRECATED);
226 if ($int < 0) {
227 $int
[all...]
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A Dbootstrap80.php21 function mb_encode_mimeheader(?string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): string { return p\Mbstring::mb_encode_mimeheader((string) $string, $charset, $transfer_encoding, (string) $newline, (int) $indent); }
30 function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p\Mbstring::mb_convert_case((string) $string, (int) $mode, $encoding); }
57 function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen((string) $string, $encoding); }
60 function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); }
69 function mb_substitute_character(string|int|null $substitute_character = null): string|int|boo
[all...]
/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhp80.php35 case \is_int($value): return 'int';
60 public static function get_resource_id($res): int
66 return (int) $res;
H A DPhpToken.php22 * @var int
32 * @var int
37 * @var int
41 public function __construct(int $id, string $text, int $line = -1, int $position = -1)
59 * @param int|string|array $kind
85 public static function tokenize(string $code, int $flags = 0): array
H A Dbootstrap.php41 function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); }
/plugin/combo/vendor/symfony/polyfill-php80/Resources/stubs/
H A DAttribute.php15 /** @var int */
18 public function __construct(int $flags = self::TARGET_ALL)
/plugin/combo/vendor/symfony/process/Exception/
H A DProcessSignaledException.php37 public function getSignal(): int
H A DProcessTimedOutException.php29 public function __construct(Process $process, int $timeoutType)
/plugin/combo/vendor/symfony/process/
H A DPhpProcess.php32 * @param int $timeout The timeout in seconds
35 public function __construct(string $script, string $cwd = null, array $env = null, int $timeout = 60, array $php = null)
H A DProcess.php139 * @param int|float|null $timeout The timeout in seconds or null to disable
186 * @param int|float|null $timeout The timeout in seconds or null to disable
240 * @return int The exit status code
250 public function run(callable $callback = null, array $env = []): int
360 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
409 * @return int The exitcode of the process
479 $this->fallbackStatus['exitcode'] = (int) $data;
496 * @return int|null The process id if running, null otherwise
506 * @param int $signal A valid POSIX signal (see https://php.net/pcntl.constants)
514 public function signal(int
[all...]
/plugin/combo/vendor/symfony/process/Pipes/
H A DAbstractPipes.php31 * @param resource|string|int|float|bool|\Iterator|null $input
176 public function handleError(int $type, string $msg)
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php136 private function validate(string $content, int $flags, string $file = null)
157 private function display(SymfonyStyle $io, array $files): int
171 private function displayTxt(SymfonyStyle $io, array $filesInfo, bool $errorAsGithubAnnotations = false): int
208 private function displayJson(SymfonyStyle $io, array $filesInfo): int
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php28 * @var int
32 public function __construct(int $indentation = 4)
45 * @param int $inline The level where you switch to inline YAML
46 * @param int $indent The level of indentation (used internally)
47 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string
143 private function dumpTaggedValue(TaggedValue $value, int $inline, int
[all...]
H A DInline.php37 public static function initialize(int $flags, int $parsedLineNumber = null, string $parsedFilename = null)
54 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
61 public static function parse(string $value = null, int $flags = 0, array &$references = [])
71 if (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) {
113 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
117 public static function dump($value, int $flags = 0): string
229 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
231 private static function dumpArray(array $value, int $flags): string
252 private static function dumpNull(int
[all...]
H A DParser.php46 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
52 public function parseFile(string $filename, int $flags = 0)
75 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
81 public function parse(string $value, int $flags = 0)
91 if (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) {
116 private function doParse(string $value, int $flags)
518 private function parseBlock(int $offset, string $yaml, int $flags)
545 public function getRealCurrentLineNb(): int
563 private function getCurrentLineIndentation(): int
[all...]
H A DUnescaper.php118 private static function utf8chr(int $c): string
H A DYaml.php47 * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
53 public static function parseFile(string $filename, int $flags = 0)
70 * @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
76 public static function parse(string $input, int $flags = 0)
90 * @param int $inline The level where you switch to inline YAML
91 * @param int $indent The amount of spaces to use for indentation of nested nodes
92 * @param int $flags A bit field of DUMP_* constants to customize the dumped YAML string
94 public static function dump($input, int $inline = 2, int $indent = 4, int
[all...]
/plugin/combo/vendor/symfony/yaml/Exception/
H A DParseException.php28 * @param int $parsedLine The line where the error occurred
32 public function __construct(string $message, int $parsedLine = -1, string $snippet = null, string $parsedFile = null, \Throwable $previous = null)
89 * @return int
99 public function setParsedLine(int $parsedLine)
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
H A DCHANGELOG.md
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DAbstractBlock.php
H A DBlockQuote.php
H A DFencedCode.php

1...<<11121314151617181920>>...30