Home
last modified time | relevance | path

Searched refs:int (Results 201 – 225 of 743) sorted by last modified time

12345678910>>...30

/plugin/combo/vendor/symfony/yaml/
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/ComboStrap/
H A DTreeVisit.php9 public static function visit(TreeNode $tree, Callable $function, int $level = 0)
H A DWikiPath.php991 * @return int - An AUTH_ value for this page for the current logged user
996 function getAuthAclValue(): int
H A DXmlTagProcessing.php128 * @param int $state
129 * @param int $pos
134 public static function handleStatic(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
274 public static function handleStaticEnter(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
557 public static function handleStaticExit(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
701 public static function handleStaticEmptyTag(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
H A DEditButton.php66 * @var int
68 private int $startPosition;
70 private ?int $endPosition;
83 * @var ?int $sectionid - sequence id of the section used only by dokuwiki
86 private ?int $outlineSectionId = null;
355 public function setStartPosition(int $startPosition): EditButton
361 public function setEndPosition(?int $endPosition): EditButton
455 private function getSectionId(): ?int
460 public function setOutlineSectionId(int $sectionSequenceId): EditButton
H A DEvent.php42 * @param int $maxEvent In case of a start or if there is a recursive bug. We don't want to take all the resources
45 public static function dispatchEvent(int $maxEvent = 10)
282 public static function purgeQueue(): int
H A DFetcherMarkup.php702 private function getCacheAge(): int
H A DPageLevel.php29 * @return int
31 public function getValue(): int
H A DFsWikiUtility.php169 * @param int $depth
172 public static function getPages($startPath, int $depth = 0): array
/plugin/combo/syntax/
H A Dbrand.php83 function getSort(): int
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfig.php40 * @var int
73 * @var int
85 ?int $alt = null
110 public function getOuterContextDepth() : int
147 public function hashCode() : int
H A DATNDeserializer.php85 /** @var array<int> */
88 /** @var int */
94 /** @var array<int, callable|null>|null */
97 /** @var array<int, callable|null>|null */
516 private function generateRuleBypassTransition(ATN $atn, int $idx) : void
599 private function stateIsEndStateFor(ATNState $state, int $idx) : ?ATNState
729 private function readInt() : int
734 private function readInt32() : int
746 $int = $this->readInt();
747 $bb[] = $int
[all...]
/plugin/combo/admin/
H A Dpagerules.php75 function getMenuSort(): int
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
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/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...]
H A DBasicState.php9 public function getStateType() : int
H A DPlusBlockStartState.php12 public function getStateType() : int
H A DPlusLoopbackState.php9 public function getStateType() : 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/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DRangeTransition.php13 /** @var int */
16 /** @var int */
19 public function __construct(ATNState $target, int $from, int $to)
32 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool
37 public function getSerializationType() : int
H A DRuleTransition.php16 * @var int
20 /** @var int */
30 public function __construct(RuleStartState $ruleStart, int $ruleIndex, int $precedence, ATNState $followState)
39 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool
52 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;
H A DWildcardTransition.php9 public function matches(int $symbol, int $minVocabSymbol, int $maxVocabSymbol) : bool
14 public function getSerializationType() : int
/plugin/combo/vendor/symfony/polyfill-php80/Resources/stubs/
H A DAttribute.php15 /** @var int */
18 public function __construct(int $flags = self::TARGET_ALL)

12345678910>>...30