Home
last modified time | relevance | path

Searched refs:int (Results 51 – 75 of 743) sorted by relevance

12345678910>>...30

/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DAbstractBlock.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DConfigurableEnvironmentInterface.php
H A DCursor.php
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/CandidateGenerator/
H A DDirectGenerator.php45 public function setSize(int $size)
61 * @param int $max can only be a value between 1 and 2. Defaults to 2.
65 public function setMaxEdits(int $max)
71 * @param int $length defaults to 1
75 public function setPrefixLength(int $length)
81 * @param int $min defaults to 4
85 public function setMinWordLength(int $min)
93 public function setMaxInspections(int $max)
/plugin/combo/ComboStrap/
H A DColorHsl.php22 * @var float|int
30 * @param float|int $lightness
63 public function setLightness(int $int): ColorHsl argument
65 if ($int < 0 || $int > 100) {
68 $this->lightness = $int;
142 public function setSaturation(int $saturation): ColorHsl
163 public function darken(int $lightness = 5): ColorHsl
H A DFetcherImage.php29 protected ?int $requestedWidth = null;
30 protected ?int $requestedHeight = null;
179 * @return int in pixel
183 abstract function getIntrinsicWidth(): int;
192 * @return int in pixel
194 public abstract function getIntrinsicHeight(): int;
322 * @return int
324 public function getTargetHeight(): int
372 * @return int
374 public function getTargetWidth(): int
[all...]
H A DFetcherRaster.php34 private int $imageWidth;
35 private int $imageWeight;
82 * @return int - the width of the image from the file
84 public function getIntrinsicWidth(): int
128 * @return int - the height of the image from the file
130 public function getIntrinsicHeight(): int
166 $this->imageWidth = (int)$imageSize[0];
170 $this->imageWeight = (int)$imageSize[1];
183 * @return int
187 function getRequestedWidth(): int
[all...]
H A DSiteConfig.php174 * @param int $default - the default value (1=true,0=false in the dokuwiki config system)
177 public function getBooleanValue(string $key, int $default): bool
229 public function setLogExceptionLevel(int $level): SiteConfig
235 public function getLogExceptionLevel(): int
243 public function getRemFontSize(): int
302 public function setHtmlMaxInlineResourceSize(int $kbSize): SiteConfig
354 public function getTocMaxLevel(): int
365 public function setTocMinHeading(int $int): SiteConfig argument
367 return $this->setConf('tocminheads', $int, sel
407 setTocTopLevel(int $int) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php51 int $startIndex,
52 int $stopIndex,
76 int $startIndex,
77 int $stopIndex,
95 int $startIndex,
96 int $stopIndex,
97 int $prediction,
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DRuleContext.php73 * @var int
77 public function __construct(?RuleContext $parent, ?int $invokingState = null)
90 public function depth() : int
150 public function getRuleIndex() : int
162 public function getAltNumber() : int
173 public function setAltNumber(int $altNumber) : void
193 public function getChild(int $i, ?string $type = null) : ?Tree
198 public function getChildCount() : int
H A DIntervalSet.php33 public static function fromInt(int $number) : self
45 public static function fromRange(int $start, int $end) : self
176 public function first() : int
185 public function addOne(int $value) : void
190 public function addRange(int $left, int $right) : void
268 public function contains(int $item) : bool
294 public function length() : int
305 public function removeOne(int
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiterInterface.php33 public function getIndex(): ?int;
39 public function getLength(): int;
41 public function setLength(int $length): void;
43 public function getOriginalLength(): int;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DNotSetTransition.php9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool
15 public function getSerializationType() : int
H A DTransition.php67 abstract public function getSerializationType() : int;
68 abstract public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DDirSyncRequestControl.php64 * @var int
69 * @var int
79 * @param int $flags
80 * @param int $maxBytes
83 public function __construct(int $flags = self::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647)
92 * @return int
94 public function getFlags(): int
100 * @param int $flags
103 public function setFlags(int
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DNormalizerFormatter.php85 public function getMaxNormalizeDepth(): int
90 public function setMaxNormalizeDepth(int $maxNormalizeDepth): self
100 public function getMaxNormalizeItemCount(): int
105 public function setMaxNormalizeItemCount(int $maxNormalizeItemCount): self
130 protected function normalize($data, int $depth = 0)
199 protected function normalizeException(Throwable $e, int $depth = 0)
270 public function addJsonEncodeOption(int $option): self
277 public function removeJsonEncodeOption(int $option): self
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php46 * @var int
53 * @var int
60 * @var int
67 /** @var int */
101 public function getLine() : int
106 public function setLine(int $line) : void
111 public function getCharPositionInLine() : int
116 public function setCharPositionInLine(int $charPositionInLine) : void
121 public function match(CharStream $input, int $mode) : int
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php70 * @param int $int
73 public static function integer(int $int): IntegerType
75 return new IntegerType($int);
88 * @param int $enum
91 public static function enumerated(int $enum): EnumeratedType
132 * @param int $integer
135 public static function bitStringFromInteger(int $integer): BitStringType
317 * @param int
72 integer(int $int) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerPushModeAction.php18 /** @var int */
21 public function __construct(int $mode)
29 * @return int The lexer mode for this `pushMode` command.
31 public function getMode() : int
39 * @return int This method returns {@see LexerActionType::PUSH_MODE}.
41 public function getActionType() : int
67 public function hashCode() : int
H A DLexerTypeAction.php18 /** @var int */
24 * @param int $type The type to assign to the token using {@see Lexer::setType()}.
26 public function __construct(int $type)
34 * @return int The type to assign to a token created by the lexer.
36 public function getType() : int
44 * @return int This method returns {@see LexerActionType::TYPE}.
46 public function getActionType() : int
72 public function hashCode() : int
H A DLexerChannelAction.php18 /** @var int */
24 * @param int $channel The channel value to pass to {@see Lexer::setChannel()}.
26 public function __construct(int $channel)
34 * @return int The channel to use for the {@see Token} created by the lexer.
36 public function getChannel() : int
44 * @return int This method returns {@see LexerActionType::CHANNEL}.
46 public function getActionType() : int
72 public function hashCode() : int
H A DLexerModeAction.php12 /** @var int */
18 * @param int $mode The mode value to pass to {@see Lexer::mode()}.
20 public function __construct(int $mode)
28 * @return int The lexer mode for this `mode` command.
30 public function getMode() : int
38 * @return int This method returns {@see LexerActionType::MODE}.
40 public function getActionType() : int
66 public function hashCode() : int
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractTermsAggregation.php20 public function setMinimumDocumentCount(int $count): self
60 public function setIncludeWithPartitions(int $partition, int $numPartitions): self
99 public function setSize(int $size): self
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilterParser.php36 * @var int
41 * @var int
47 * @psalm-var null|array<0|positive-int, array{startAt?: int, endAt: null|int}>
76 * @param int $startAt
79 * @psalm-return array{0: int|null, 1: AndFilter|Filter\ApproximateFilter|Filter\EqualityFilter|Filter\GreaterThanOrEqualFilter|Filter\LessThanOrEqualFilter|Filter\NotFilter|Filter\PresentFilter|MatchingRuleFilter|OrFilter|SubstringFilter}
82 protected function parseFilterString(int $startAt, bool $isRoot = false): array
100 * @param int $pos
103 protected function isAtFilterContainer(int
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DArrayPredictionContext.php26 * @var array<int>
32 * @param array<int> $returnStates
64 public function getLength() : int
69 public function getParent(int $index) : ?PredictionContext
74 public function getReturnState(int $index) : int
125 protected function computeHashCode() : int

12345678910>>...30