Home
last modified time | relevance | path

Searched refs:int (Results 1 – 25 of 858) sorted by relevance

12345678910>>...35

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php84 public function getIndex() : int
89 public function mark() : int
94 public function release(int $marker) : void
99 public function seek(int $index) : void
106 public function getLength() : int
143 public function sync(int $i) : bool
156 public function fetch(int $n) : int
179 public function get(int $index) : Token
196 public function LA(int $i) : int
203 protected function LB(int $k) : ?Token
[all …]
H A DCommonToken.php93 int $type,
95 ?int $channel = null,
96 int $start = -1,
97 int $stop = -1
156 public function getType() : int
161 public function setType(int $type) : void
166 public function getLine() : int
171 public function setLine(int $line) : void
211 public function getCharPositionInLine() : int
216 public function setCharPositionInLine(int $charPositionInLine) : void
[all …]
H A DInputStream.php57 public function getIndex() : int
62 public function getLength() : int
77 public function LA(int $offset) : int
98 public function LT(int $offset) : int
106 public function mark() : int
111 public function release(int $marker) : void
120 public function seek(int $index) : void
132 public function getText(int $start, int $stop) : string
H A DTokenFactory.php23 int $type,
25 int $channel,
26 int $start,
27 int $stop,
28 int $line,
29 int $charPositionInLine
35 public function create(int $type, string $text) : Token;
H A DToken.php58 public function getType() : int;
63 public function getLine() : int;
69 public function getCharPositionInLine() : int;
76 public function getChannel() : int;
85 public function getTokenIndex() : int;
91 public function getStartIndex() : int;
97 public function getStopIndex() : int;
H A DIntStream.php86 public function LA(int $i) : int;
134 public function mark() : int;
149 public function release(int $marker) : void;
158 public function getIndex() : int;
182 public function seek(int $index) : void;
188 public function getLength() : int;
H A DCommonTokenFactory.php62 int $type,
64 int $channel,
65 int $start,
66 int $stop,
67 int $line,
68 int $column
88 public function create(int $type, string $text) : Token
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/
DMultiLength.php37 $int = substr($string, 0, $length - 1);
39 if ($int == '') {
42 if (!is_numeric($int)) {
46 $int = (int)$int;
47 if ($int < 0) {
50 if ($int == 0) {
53 if ($int == 1) {
56 return ((string)$int) . '*';
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
DHealth.php83 public function getNumberOfNodes(): int
91 public function getNumberOfDataNodes(): int
99 public function getActivePrimaryShards(): int
107 public function getActiveShards(): int
115 public function getRelocatingShards(): int
123 public function getInitializingShards(): int
131 public function getUnassignedShards(): int
139 public function getDelayedUnassignedShards(): int
144 public function getNumberOfPendingTasks(): int
149 public function getNumberOfInFlightFetch(): int
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DBaseErrorListener.php24 int $line,
25 int $charPositionInLine,
34 int $startIndex,
35 int $stopIndex,
45 int $startIndex,
46 int $stopIndex,
55 int $startIndex,
56 int $stopIndex,
57 int $prediction,
H A DANTLRErrorListener.php24 int $line,
25 int $charPositionInLine,
33 int $startIndex,
34 int $stopIndex,
43 int $startIndex,
44 int $stopIndex,
52 int $startIndex,
53 int $stopIndex,
54 int $prediction,
H A DProxyErrorListener.php37 int $line,
38 int $charPositionInLine,
50 int $startIndex,
51 int $stopIndex,
64 int $startIndex,
65 int $stopIndex,
84 int $startIndex,
85 int $stopIndex,
86 int $prediction,
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A Dbootstrap80.php21 …set = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): strin…
30 …function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p…
57 …function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen(…
60 …ction mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): i…
69 …function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool { …
72 …function mb_substr(?string $string, ?int $start, ?int $length = null, ?string $encoding = null): s…
75 …tion mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): i…
87 …ion mb_strripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): i…
90 …tion mb_strrpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): i…
96 …function mb_get_info(?string $type = 'all'): array|string|int|false { return p\Mbstring::mb_get_in…
[all …]
/plugin/findologicxmlexport/vendor/symfony/polyfill-ctype/
DCtype.php207 * @param string|int $int
211 private static function convert_int_to_char_for_ctype($int) argument
213 if (!\is_int($int)) {
214 return $int;
217 if ($int < -128 || $int > 255) {
218 return (string) $int;
221 if ($int < 0) {
222 $int += 256;
225 return \chr($int);
/plugin/mdpage/vendor/symfony/polyfill-ctype/
DCtype.php207 * @param string|int $int
211 private static function convert_int_to_char_for_ctype($int) argument
213 if (!\is_int($int)) {
214 return $int;
217 if ($int < -128 || $int > 255) {
218 return (string) $int;
221 if ($int < 0) {
222 $int += 256;
225 return \chr($int);
/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;
226 if ($int < 0) {
227 $int += 256;
230 return \chr($int);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/
DIndex.php55 public function getNumberOfShards(): int
63 public function getNumberOfReplicas(): int
71 public function getActivePrimaryShards(): int
79 public function getActiveShards(): int
87 public function getRelocatingShards(): int
95 public function getInitializingShards(): int
103 public function getUnassignedShards(): int
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DControls.php57 …public static function dirSync(int $flags = DirSyncRequestControl::FLAG_INCREMENTAL_VALUES, string…
69 public static function expectedEntryCount(int $min, int $max): ExpectedEntryCountControl
92 public static function paging(int $size, string $cookie = ''): PagingControl
188 …public static function vlv(int $before, int $after, int $offset = 1, int $count = 0, ?string $cont…
202 …public static function vlvFilter(int $before, int $after, GreaterThanOrEqualFilter $filter, ?strin…
213 public static function sdFlags(int $flags): SdFlagsControl
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvControl.php63 …public function __construct(int $before, int $after, ?int $offset = null, ?int $count = null, Grea…
77 public function getAfter(): int
86 public function setAfter(int $after)
96 public function getBefore(): int
105 public function setBefore(int $before)
116 public function setCount(?int $count)
138 public function setOffset(?int $offset)
/plugin/matrixnotifierwas/vendor/psr/http-message/src/
DStreamInterface.php51 public function getSize(): ?int;
59 public function tell(): int;
87 public function seek(int $offset, int $whence = SEEK_SET): void;
115 public function write(string $string): int;
134 public function read(int $length): string;
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DStreamWrapper.php72 …public function stream_open(string $path, string $mode, int $options, string &$opened_path = null)…
86 public function stream_read(int $count): string
91 public function stream_write(string $data): int
96 public function stream_tell(): int
106 public function stream_seek(int $offset, int $whence): bool
116 public function stream_cast(int $cast_as)
185 public function url_stat(string $path, int $flags): array
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
DBase32Hex.php43 protected static function decode5Bits(int $src): int
63 protected static function decode5BitsUpper(int $src): int
83 protected static function encode5Bits(int $src): string
102 protected static function encode5BitsUpper(int $src): string
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php54 public function toInteger(): int
82 public static function fromBinary($bytes, ?int $minLength = null)
100 * @param int $int
104 public static function fromInteger(int $int, ?int $minLength = null) argument
106 $pieces = str_split(decbin($int), 8);
130 public static function withTag($tagNumber, int $class, bool $isConstructed, string $value = '')
H A DAbstractType.php150 public function setTagClass(int $taggingClass)
160 public function getTagClass(): int
174 * @param int|null|string $int
177 public function setTagNumber($int) argument
179 $this->tagNumber = $int;
193 public function hasChild(int $index)
221 public function getChild(int $index): ?AbstractType
242 public function count(): int
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DSimState.php47 public function getIndex() : int
52 public function setIndex(int $index) : void
57 public function getLine() : int
62 public function setLine(int $line) : void
67 public function getCharPos() : int
72 public function setCharPos(int $charPos) : void

12345678910>>...35