Home
last modified time | relevance | path

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

12345678910>>...30

/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A 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/
H A DBufferedTokenStream.php50 * @var int
84 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
[all...]
H A DCommonToken.php16 * @var int
24 * @var int
32 * @var int
40 * @var int
72 * @var int
80 * @var int
88 * @var int
93 int $type,
95 ?int $channel = null,
96 int
[all...]
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 DIntStream.php86 public function LA(int $i) : int;
95 * The returned mark is an opaque handle (type `int`) which is passed to
130 * @return int An opaque marker which should be passed to
134 public function mark() : int;
145 * @param int $marker A marker returned by a call to `mark`.
149 public function release(int $marker) : void;
158 public function getIndex() : int;
180 * @param int $index The absolute index to seek to.
182 public function seek(int
[all...]
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 DInputStream.php14 /** @var int */
17 /** @var int */
57 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
[all...]
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
H A DWritableToken.php11 public function setType(int $ttype) : void;
13 public function setLine(int $line) : void;
15 public function setCharPositionInLine(int $pos) : void;
17 public function setChannel(int $channel) : void;
19 public function setTokenIndex(int $index) : void;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
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 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 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/findologicxmlexport/vendor/symfony/polyfill-ctype/
H A 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/
H A 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;
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/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/
H A 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/Control/Vlv/
H A DVlvControl.php41 * @var int
46 * @var int
56 * @param int $before
57 * @param int $after
58 * @param null|int $offset
59 * @param null|int $count
63 public function __construct(int $before, int $after, ?int $offset = null, ?int
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DControls.php52 * @param int $flags
54 * @param int $maxBytes
57 public static function dirSync(int $flags = DirSyncRequestControl::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647)
65 * @param int $min
66 * @param int $max
69 public static function expectedEntryCount(int $min, int $max): ExpectedEntryCountControl
88 * @param int $size
92 public static function paging(int
[all...]
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A 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.php52 * @return int
54 public function toInteger(): int
79 * @param int|null $minLength
82 public static function fromBinary($bytes, ?int $minLength = null)
100 * @param int $int
101 * @param int|null $minLength
104 public static function fromInteger(int $int, ?int argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DEpsilonTransition.php11 /** @var int */
14 public function __construct(ATNState $target, int $outermostPrecedenceReturn = -1)
22 * @return int The rule index of a precedence rule for which this transition
29 public function getOutermostPrecedenceReturn() : int
34 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool
47 public function getSerializationType() : int
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DSimState.php27 /** @var int */
30 /** @var int */
33 /** @var int */
47 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
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DSingletonPredictionContext.php20 /** @var int */
23 public function __construct(int $returnState, ?PredictionContext $parent = null)
31 public static function create(?PredictionContext $parent, int $returnState) : PredictionContext
41 public function getLength() : int
46 public function getParent(int $index) : ?PredictionContext
55 public function getReturnState(int $index) : int
96 protected function computeHashCode() : int
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/
H A DATNState.php53 /** @var int */
59 * @var int
103 public function getNumberOfTransitions() : int
108 public function addTransition(Transition $trans, int $index = -1) : void
123 public function getTransition(int $index) : Transition
128 public function setTransition(Transition $trans, int $index) : void
141 public function removeTransition(int $index) : void
151 public function setRuleIndex(int $ruleIndex) : void
161 public function hashCode() : int
166 abstract public function getStateType() : int;
[all...]

12345678910>>...30