/plugin/combo/vendor/symfony/polyfill-ctype/ |
H A D | bootstrap80.php | 15 function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); } 18 function ctype_alpha(mixed $text): bool { return p\Ctype::ctype_alpha($text); } 21 function ctype_cntrl(mixed $text): bool { return p\Ctype::ctype_cntrl($text); } 24 function ctype_digit(mixed $text): bool { return p\Ctype::ctype_digit($text); } 27 function ctype_graph(mixed $text): bool { return p\Ctype::ctype_graph($text); } 30 function ctype_lower(mixed $text): bool { return p\Ctype::ctype_lower($text); } 33 function ctype_print(mixed $text): bool { return p\Ctype::ctype_print($text); } 36 function ctype_punct(mixed $text): bool { return p\Ctype::ctype_punct($text); } 39 function ctype_space(mixed $text): bool { return p\Ctype::ctype_space($text); } 42 function ctype_upper(mixed $text): bool { retur [all...] |
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
H A D | Explain.php | 106 * @return bool 108 private function start($node): bool { 116 * @return bool 118 private function end(): bool { 129 public function visitEnterSelectorGroup(): bool { 139 public function visitEnterSelectorSequence(): bool { 157 * @return bool 159 public function visitLeaveSelectorSequence(): bool { 167 public function visitSelectorSimpleUniversal(Ast\Selector\Simple\Universal $universal): bool { 179 * @return bool [all...] |
H A D | Css.php | 44 public function visitEnterSelectorGroup(Ast\Selector\Group $group): bool { 61 public function visitEnterSelectorSequence(): bool { 75 public function visitSelectorSimpleUniversal(Ast\Selector\Simple\Universal $universal): bool { 90 public function visitSelectorSimpleType(Ast\Selector\Simple\Type $type): bool { 105 public function visitSelectorSimpleId(Ast\Selector\Simple\Id $id): bool { 116 public function visitSelectorSimpleClassName(Ast\Selector\Simple\ClassName $class): bool { 121 public function visitEnterSelectorCombinatorDescendant(): bool { 129 public function visitEnterSelectorCombinatorChild(): bool { 135 public function visitEnterSelectorCombinatorFollower(): bool { 141 public function visitEnterSelectorCombinatorNext(): bool { [all...] |
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/ |
H A D | SecurityStrength.php | 22 * @var bool 27 * @var bool 32 * @var bool 37 * @var bool 47 bool $supportsIntegrity, 48 bool $supportsPrivacy, 49 bool $supportsAuth, 50 bool $isPlainTextAuth, 60 public function supportsIntegrity(): bool 65 public function supportsPrivacy(): bool [all...] |
H A D | SaslContext.php | 22 * @var bool 27 * @var bool 32 * @var bool 37 * @var bool 57 * @param bool $isComplete 60 public function setIsComplete(bool $isComplete) 70 public function isComplete(): bool 76 * @param bool $isServerMode 79 public function setIsServerMode(bool $isServerMode) 89 public function isServerMode(): bool [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/ |
H A D | AbstractBlock.php |
|
H A D | ListBlock.php |
|
H A D | BlockQuote.php |
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
H A D | Interval.php | 33 public function contains(int $item) : bool 43 public function equals(object $other) : bool 57 public function startsBeforeDisjoint(Interval $other) : bool 65 public function startsBeforeNonDisjoint(Interval $other) : bool 73 public function startsAfter(Interval $other) : bool 81 public function startsAfterDisjoint(Interval $other) : bool 89 public function startsAfterNonDisjoint(Interval $other) : bool 98 public function disjoint(Interval $other) : bool 106 public function adjacent(Interval $other) : bool
|
/plugin/authgooglesheets/vendor/google/auth/src/Cache/ |
H A D | MemoryCacheItemPool.php | 74 public function hasItem($key): bool 87 public function clear(): bool 101 public function deleteItem($key): bool 112 public function deleteItems(array $keys): bool 129 public function save(CacheItemInterface $item): bool 142 public function saveDeferred(CacheItemInterface $item): bool 155 public function commit(): bool
|
H A D | SysVCacheItemPool.php | 124 public function hasItem($key): bool 133 public function clear(): bool 143 public function deleteItem($key): bool 151 public function deleteItems(array $keys): bool 166 public function save(CacheItemInterface $item): bool 179 public function saveDeferred(CacheItemInterface $item): bool 188 public function commit(): bool
|
/plugin/combo/vendor/symfony/process/Pipes/ |
H A D | UnixPipes.php | 29 public function __construct(?bool $ttyMode, bool $ptyMode, $input, bool $haveReadSupport) 102 public function readAndWrite(bool $blocking, bool $close = false): array 151 public function haveReadSupport(): bool 159 public function areOpen(): bool 161 return (bool) $this->pipes;
|
H A D | PipesInterface.php | 40 * @param bool $blocking Whether to use blocking calls or not 41 * @param bool $close Whether to close pipes if they've reached EOF 45 public function readAndWrite(bool $blocking, bool $close = false): array; 50 public function areOpen(): bool; 55 public function haveReadSupport(): bool;
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/Health/ |
H A D | Shard.php | 55 public function isPrimaryActive(): bool 63 public function isActive(): bool 71 public function isRelocating(): bool 79 public function isInitialized(): bool 87 public function isUnassigned(): bool
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/ |
H A D | Settings.php | 80 public function get(string $setting = '', bool $includeDefaults = false) 126 * Returns a setting interpreted as a bool. 128 * One can use a real bool, int(0), int(1) to set bool settings. 130 * not normalize bool values. This method ensures a bool is returned for 139 public function getBool(string $setting): bool 197 * @param bool $readOnly (default = true) 203 public function setReadOnly(bool $readOnly = true): Response 213 public function getReadOnly(): bool [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/ |
H A D | Delimiter.php | 42 private bool $canOpen; 45 private bool $canClose; 48 private bool $active; 53 public function __construct(string $char, int $numDelims, AbstractStringContainer $node, bool $canOpen, bool $canClose, ?int $index = null) 65 public function canClose(): bool 70 public function canOpen(): bool 75 public function isActive(): bool 80 public function setActive(bool $active): void
|
H A D | DelimiterInterface.php | 23 public function canClose(): bool; 25 public function canOpen(): bool; 27 public function isActive(): bool; 29 public function setActive(bool $active): void;
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/ |
H A D | PredictionMode.php | 165 public static function hasSLLConflictTerminatingPrediction(int $mode, ATNConfigSet $configs) : bool 208 * @return bool If any configuration in is in a if any configuration in 211 public static function hasConfigInRuleStopState(ATNConfigSet $configs) : bool 229 * @return bool If all configurations in are in a if all configurations in 232 public static function allConfigsInRuleStopStates(ATNConfigSet $configs) : bool 376 * @return bool If every >BitSet in `altsets` {@see BitSet::length()} > 1, 379 public static function allSubsetsConflict(array $altsets) : bool 390 * @return bool `true` if `altsets` contains a {@see BitSet} with 393 public static function hasNonConflictingAltSet(array $altsets) : bool 410 * @return bool `tru [all...] |
H A D | ATNDeserializationOptions.php | 9 /** @var bool */ 12 /** @var bool */ 15 /** @var bool */ 36 public function isReadOnly() : bool 46 public function isVerifyATN() : bool 51 public function setVerifyATN(bool $verifyATN) : void 60 public function isGenerateRuleBypassTransitions() : bool 65 public function setGenerateRuleBypassTransitions(bool $generateRuleBypassTransitions) : void
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/ |
H A D | TableSection.php | 55 public function isHead(): bool 60 public function isBody(): bool
|
H A D | TableRow.php |
|
/plugin/findologicxmlexport/vendor/sebastian/environment/ |
H A D | README.md | 50 bool(false) 51 bool(true) 52 bool(true) 53 bool(true) 68 bool(true) 69 bool(false) 70 bool(false) 71 bool(true)
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | SlackHandler.php | 56 bool $useAttachment = true, 59 bool $bubble = true, 60 bool $useShortAttachment = false, 61 bool $includeContextAndExtra = false, 63 bool $persistent = false, 219 public function useAttachment(bool $useAttachment): self 233 public function useShortAttachment(bool $useShortAttachment): self 240 public function includeContextAndExtra(bool $includeContextAndExtra): self
|
H A D | TestHandler.php | 114 public function setSkipReset(bool $skipReset) 124 public function hasRecords($level): bool 136 public function hasRecord($record, $level): bool 159 public function hasRecordThatContains(string $message, $level): bool 171 public function hasRecordThatMatches(string $regex, $level): bool 173 return $this->hasRecordThatPasses(function (array $rec) use ($regex): bool {
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Node/ |
H A D | Attributes.php |
|