Home
last modified time | relevance | path

Searched refs:input (Results 326 – 350 of 1436) sorted by path

1...<<11121314151617181920>>...58

/plugin/combo/resources/theme/default/pages/templates/
H A Dapp-edit.css32 /** The input summary when editing a page is 50px fix **/
33 #wiki__editbar input {
/plugin/combo/resources/webcode/
H A Dwebcode-console.js36 let printTable = function (input) { argument
37 if (Array.isArray(input) !== true) {
42 if (input.length <= 0) {
58 for (let i = 0; i < input.length; i++) {
60 let element = input[i];
83 if (typeof input[0] === 'object') {
103 let printLog = function (input) { argument
105 if (typeof input === "object") {
107 let keys = Object.keys(input);
109 s += " " + keys[i] + " : " + input[key
162 addLogEntry(input) global() argument
168 addTableEntry(input) global() argument
190 log(input) global() argument
195 table(input) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md85 $input = InputStream::fromPath($argv[1]);
86 $lexer = new JSONLexer($input);
101 Parse the input file:
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php51 * The line number 1..n within the input.
121 public function match(CharStream $input, int $mode) : int argument
132 $mark = $input->mark();
135 $this->startIndex = $input->getIndex();
141 return $this->matchATN($input);
143 return $this->execATN($input, $dfa->s0);
145 $input->release($mark);
158 protected function matchATN(CharStream $input) : int argument
168 $s0_closure = $this->computeStartState($input, $startState);
178 $predict = $this->execATN($input,
187 execATN(CharStream $input, DFAState $ds0) global() argument
295 computeTargetState(CharStream $input, DFAState $s, int $t) global() argument
319 failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) global() argument
359 getReachableConfigSet(CharStream $input, ATNConfigSet $closure, ATNConfigSet $reach, int $t) global() argument
418 accept(CharStream $input, LexerActionExecutor $lexerActionExecutor, int $startIndex, int $index, int $line, int $charPos) global() argument
448 computeStartState(CharStream $input, ATNState $p) global() argument
472 closure(CharStream $input, LexerATNConfig $config, ATNConfigSet $configs, bool $currentAltReachedAcceptState, bool $speculative, bool $treatEofAsEpsilon) global() argument
559 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
692 evaluatePredicate(CharStream $input, int $ruleIndex, int $predIndex, bool $speculative) global() argument
719 captureSimState(SimState $settings, CharStream $input, DFAState $dfaState) global() argument
836 getText(CharStream $input) global() argument
842 consume(CharStream $input) global() argument
[all...]
H A DLexerActionExecutor.php49 * the input `lexerActionExecutor` followed by a specified `lexerAction`.
87 * {@see IntStream::seek()} on the input {@see CharStream} to set the input
99 * position in the input stream.
107 * @return self A {@see LexerActionExecutor} which stores input stream offsets
147 * `input` {@see CharStream} prior to calling {@see LexerAction::execute()}
148 * on a position-dependent action. Before the method returns, the input
153 * @param CharStream $input The input stream which is the source for
156 * `input` shoul
164 execute(Lexer $lexer, CharStream $input, int $startIndex) global() argument
[all...]
H A DParserATNSimulator.php47 * complete the DFA path for the current input (until it finds a conflict state
61 * When SLL yields a configuration set with conflict, we rewind the input and
65 * definitively say we have a true ambiguity for that input sequence. If we
73 * ATN each time we get that input.
87 * There is no strict ordering between the amount of input used by SLL vs LL,
89 * we have input A B C that leads to an SLL conflict with full context X. That
92 * in the input and A B C E could predict alternative 2 in another position in
93 * input. The conflicting SLL configurations could still be non-unique in the
94 * full context prediction, which would lead us to requiring more input than the
96 * input use
283 protected $input; global() variable in Antlr\\Antlr4\\Runtime\\Atn\\ParserATNSimulator
324 adaptivePredict(TokenStream $input, int $decision, ParserRuleContext $outerContext) global() argument
457 execATN(DFA $dfa, DFAState $s0, TokenStream $input, int $startIndex, ParserRuleContext $outerContext) global() argument
756 execATNWithFullContext(DFA $dfa, DFAState $D, ATNConfigSet $s0, TokenStream $input, int $startIndex, ParserRuleContext $outerContext) global() argument
2283 getLookaheadName(TokenStream $input) global() argument
2289 noViableAlt(TokenStream $input, $outerContext, ATNConfigSet $configs, int $startIndex) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonToken.php51 * the same source and input stream share a reference to the same
182 $input = $this->getInputStream();
184 if ($input === null) {
188 $n = $input->getLength();
191 return $input->getText($this->start, $this->stop);
200 * extracting the text from the input.
203 * if the text should be obtained from the input
H A DInputStream.php10 * Vacuum all input from a string and then treat it like a buffer.
24 public $input; variable in Antlr\\Antlr4\\Runtime\\InputStream
32 private function __construct(string $input, array $characters) argument
34 $this->input = $input;
39 public static function fromString(string $input) : InputStream argument
41 $chars = \preg_split('//u', $input, -1, \PREG_SPLIT_NO_EMPTY);
43 return new self($input, $chars === false ? [] : $chars);
152 return $this->input;
H A DLexer.php13 * A lexer is recognizer that draws input symbols from a character stream.
30 public $input; variable in Antlr\\Antlr4\\Runtime\\Lexer
105 * input char buffer. Use {@see Lexer::setText()} or can set this instance var.
114 public function __construct(?CharStream $input = null) argument
118 $this->input = $input;
120 $this->tokenFactorySourcePair = new Pair($this, $input);
129 if ($this->input !== null) {
130 $this->input->seek(0);// rewind the input
289 setInputStream(IntStream $input) global() argument
[all...]
H A DParser.php52 * The input stream.
59 protected $input; variable in Antlr\\Antlr4\\Runtime\\Parser
119 public function __construct(TokenStream $input) argument
125 $this->setInputStream($input);
131 if ($this->input !== null) {
132 $this->input->seek(0);
150 * Match current input symbol against `ttype`. If the symbol type matches,
167 * @throws RecognitionException If the current input symbol did not match
197 * Match current input symbol as a wildcard. If the symbol type matches
211 * @throws RecognitionException If the current input symbo
428 setInputStream(IntStream $input) global() argument
452 setTokenStream(TokenStream $input) global() argument
[all...]
H A DRecognizer.php219 abstract public function setInputStream(IntStream $input) : void; argument
221 abstract public function setTokenFactory(TokenFactory $input) : void; argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php37 /** The index into the input stream where the last error occurred.
171 throw new \RuntimeException('Unexpected null input stream.');
231 * input with an extra token between members would force the parser to
261 throw new \RuntimeException('Unexpected null input stream.');
326 $input = '<unknown input>';
336 $input = '<EOF>';
338 $input = $tokens->getTextByTokens($e->getStartToken(), $e->getOffendingToken());
342 $msg = \sprintf('no viable alternative at input %s', $this->escapeWSAndQuote($input));
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php15 * Matching attempted at what input index?
22 * Which configurations did we try at $input->index() that couldn't match $input->LA(1)?
28 public function __construct(Lexer $lexer, CharStream $input, int $startIndex, ATNConfigSet $deadEndConfigs) argument
30 parent::__construct($lexer, $input, null);
44 $input = $this->getInputStream();
46 if (!$input instanceof CharStream) {
50 if ($input !== null && $this->startIndex >= 0 && $this->startIndex < $input->getLength()) {
51 $symbol = $input
[all...]
H A DNoViableAltException.php15 * to take based upon the remaining input. It tracks the starting token
16 * of the offending input and also knows where the parser was
22 * The token object at the start index; the input stream might
32 * Which configurations did we try at $input->index() that couldn't
33 * match $input->LT(1)?
41 ?TokenStream $input = null, argument
59 if ($input === null) {
60 $input = $recognizer->getInputStream();
63 parent::__construct($recognizer, $input, $ctx);
H A DRecognitionException.php17 * mismatched input errors. In each case, the parser knows where it is
18 * in the input, where it is in the ATN, the rule invocation stack,
34 private $input; variable in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\RecognitionException
50 ?IntStream $input, argument
57 $this->input = $input;
87 * Gets the set of input symbols which could potentially follow the
125 * Gets the input stream which is the symbol source for the recognizer where
128 * If the input stream is not available, this method returns `null`.
130 * @return IntStream|null The input strea
[all...]
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md87 - Accept array as possible input to `sendKeys()` method. (Unintentional BC break in 1.8.0.)
H A DREADME.md167 $driver->findElement(WebDriverBy::id('searchInput')) // find search input element
/plugin/combo/vendor/symfony/process/
H A DInputStream.php17 * Provides a way to continuously write to the input of a Process until the InputStream is closed.
27 private $input = []; variable in Symfony\\Component\\Process\\InputStream
39 * Appends an input to the write buffer.
41 * @param resource|string|int|float|bool|\Traversable|null $input The input to append as scalar,
44 public function write($input) argument
46 if (null === $input) {
52 $this->input[] = ProcessUtils::validateInput(__METHOD__, $input);
79 while ($this->open || $this->input) {
[all...]
H A DPhpProcess.php56 public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60) argument
H A DProcess.php59 private $input; variable in Symfony\\Component\\Process\\Process
138 * @param mixed $input The input as stream resource, scalar or \Traversable, or null for no input
143 public function __construct(array $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60) argument
163 $this->setInput($input);
185 * @param mixed $input The input as stream resource, scalar or \Traversable, or null for no input
192 public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input argument
1176 setInput($input) global() argument
[all...]
H A DProcessUtils.php33 * Validates and normalizes a Process input.
35 * @param string $caller The name of method call that validates the input
36 * @param mixed $input The input to validate
40 * @throws InvalidArgumentException In case the input is not valid
42 public static function validateInput(string $caller, $input) argument
44 if (null !== $input) {
45 if (\is_resource($input)) {
46 return $input;
48 if (\is_string($input)) {
[all...]
/plugin/combo/vendor/symfony/process/Pipes/
H A DAbstractPipes.php26 private $input; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes
31 * @param resource|string|int|float|bool|\Iterator|null $input
33 public function __construct($input) argument
35 if (\is_resource($input) || $input instanceof \Iterator) {
36 $this->input = $input;
37 } elseif (\is_string($input)) {
38 $this->inputBuffer = $input;
40 $this->inputBuffer = (string) $input;
[all...]
H A DUnixPipes.php29 public function __construct(?bool $ttyMode, bool $ptyMode, $input, bool $haveReadSupport) argument
35 parent::__construct($input);
H A DWindowsPipes.php38 public function __construct($input, bool $haveReadSupport) argument
88 parent::__construct($input);
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php91 protected function execute(InputInterface $input, OutputInterface $output) argument
93 $io = new SymfonyStyle($input, $output);
94 $filenames = (array) $input->getArgument('filename');
95 $excludes = $input->getOption('exclude');
96 $this->format = $input->getOption('format');
97 $flags = $input->getOption('parse-tags');
283 public function complete(CompletionInput $input, CompletionSuggestions $suggestions): void argument
285 if ($input->mustSuggestOptionValuesFor('format')) {

1...<<11121314151617181920>>...58