Home
last modified time | relevance | path

Searched refs:configs (Results 1 – 25 of 43) sorted by last modified time

12

/plugin/confmanager/
H A Dhelper.php16 static $configs = null;
17 if ($configs === null) {
18 $configs = [];
19 Event::createAndTrigger('CONFMANAGER_CONFIGFILES_REGISTER', $configs, null, false);
20 usort($configs, [$this, '_sortByConfigName']);
22 return $configs;
/plugin/confmanager/configTypes/
H A DConfigManagerSingleLineConfigCascade.php27 $configs = $this->readConfig();
28 $default = $configs['default'];
29 $local = $configs['local'];
30 $configs = array_merge($default, $local);
32 usort($configs, [$this->helper, '_sortHuman']);
H A DConfigManagerTwoLineLeftImageConfigCascade.php29 $configs = $this->readConfig();
30 $default = $configs['default'];
31 $local = $configs['local'];
32 $configs = array_merge($default, $local);
34 uksort($configs, [$this->helper, '_sortHuman']);
98 $configs = $this->readConfig();
99 if (isset($configs['default'][$key])) {
183 $configs = $this->readConfig();
184 if (isset($configs['default'][$key])) {
H A DConfigManagerTwoLineRightImageConfigCascade.php29 $configs = $this->readConfig();
30 $path = $this->imageFolder . $configs[$configtype][$key];
109 $configs = $this->readConfig();
110 if (isset($configs['default'][$key])) {
H A DConfigManagerTwoLine.php68 $configs = $local;
69 uksort($configs, [$this->helper, '_sortHuman']);
H A DConfigManagerTwoLineConfigCascade.php20 $configs = $this->readConfig();
21 $default = $configs['default'];
22 $local = $configs['local'];
23 $configs = array_merge($default, $local);
25 uksort($configs, [$this->helper, '_sortHuman']);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php190 $this->log[] = \sprintf('start state closure=%s', (string) $ds0->configs);
203 $this->log[] = \sprintf('execATN loop starting closure: %s', (string) $s->configs);
253 return $this->failOrAccept($this->prevAccept, $input, $s->configs, $t);
301 $this->getReachableConfigSet($input, $s->configs, $reach, $t);
364 // this is used to skip processing for configs which have a lower priority
408 // any remaining configs for this alt have a lower priority
451 $configs = new OrderedATNConfigSet();
456 $this->closure($input, $cfg, $configs, false, false, false);
459 return $configs;
474 ATNConfigSet $configs, argument
562 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
727 addDFAEdgeATNConfigSet(DFAState $from, int $t, ATNConfigSet $configs) global() argument
780 addDFAState(ATNConfigSet $configs) global() argument
[all...]
H A DParserATNSimulator.php395 $dfa->s0->configs = $s0_closure; // not used for prediction but useful to know start configs anyway
429 * set of ATN configs (proposed DFA state):
493 /* If any configs in previous dipped into outer context, that
504 $e = $this->noViableAlt($input, $outerContext, $previousD->configs, $startIndex);
509 $previousD->configs,
523 $conflictingAlts = $D->configs->getConflictingAlts();
571 $D->configs,
590 throw $this->noViableAlt($input, $outerContext, $D->configs, $startIndex);
598 $this->reportAmbiguity($dfa, $D, $startIndex, $stopIndex, false, $alts, $D->configs);
1065 removeAllConfigsNotInRuleStopState(ATNConfigSet $configs, bool $lookToEndOfRule) global() argument
1247 applyPrecedenceFilter(ATNConfigSet $configs) global() argument
1310 getPredsForAmbigAlts(BitSet $ambigAlts, ATNConfigSet $configs, int $nalts) global() argument
1439 getSynValidOrSemInvalidAltThatFinishedDecisionEntryRule(ATNConfigSet $configs, ParserRuleContext $outerContext) global() argument
1468 getAltThatFinishedDecisionEntryRule(ATNConfigSet $configs) global() argument
1496 splitAccordingToSemanticValidity(ATNConfigSet $configs, ParserRuleContext $outerContext) global() argument
1592 closure(ATNConfig $config, ATNConfigSet $configs, Set $closureBusy, bool $collectPredicates, bool $fullCtx, bool $treatEofAsEpsilon) global() argument
1617 closureCheckingStopState(ATNConfig $config, ATNConfigSet $configs, Set $closureBusy, bool $collectPredicates, bool $fullCtx, int $depth, bool $treatEofAsEpsilon) global() argument
1713 closure_(ATNConfig $config, ATNConfigSet $configs, Set $closureBusy, bool $collectPredicates, bool $fullCtx, int $depth, bool $treatEofAsEpsilon) global() argument
2211 getConflictingAlts(ATNConfigSet $configs) global() argument
2254 getConflictingAltsOrUniqueAlt(ATNConfigSet $configs) global() argument
2291 noViableAlt(TokenStream $input, $outerContext, ATNConfigSet $configs, int $startIndex) global() argument
2304 getUniqueAlt(ATNConfigSet $configs) global() argument
2417 reportAttemptingFullContext(DFA $dfa, BitSet $conflictingAlts, ATNConfigSet $configs, int $startIndex, int $stopIndex) global() argument
2448 reportContextSensitivity(DFA $dfa, int $prediction, ATNConfigSet $configs, int $startIndex, int $stopIndex) global() argument
2486 reportAmbiguity(DFA $dfa, DFAState $D, int $startIndex, int $stopIndex, bool $exact, BitSet $ambigAlts, ATNConfigSet $configs) global() argument
[all...]
H A DPredictionMode.php129 * associated with the conflicting configs, but since we can continue
165 public static function hasSLLConflictTerminatingPrediction(int $mode, ATNConfigSet $configs) : bool argument
169 * configs meet this condition, then none of the configurations is able
172 if (self::allConfigsInRuleStopStates($configs)) {
178 // Don't bother with combining configs from different semantic
181 if ($configs->hasSemanticContext) {
182 // dup configs, tossing out semantic predicates
185 foreach ($configs->elements() as $c) {
190 $configs = $dup;
192 // now we have combined contexts for configs wit
211 hasConfigInRuleStopState(ATNConfigSet $configs) global() argument
232 allConfigsInRuleStopStates(ATNConfigSet $configs) global() argument
494 getConflictingAltSubsets(ATNConfigSet $configs) global() argument
540 getStateToAltMap(ATNConfigSet $configs) global() argument
558 hasStateAssociatedWithOneAlt(ATNConfigSet $configs) global() argument
[all...]
H A DATNConfigSet.php36 * All configs but hashed by (s, i, _, pi) not including context. Wiped out
48 public $configs = []; variable in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet
94 * equals/hashcode operation. All configs but hashed by (s, i, _, pi)
129 * Adding a new config means merging contexts with existing configs for
163 $this->configs[] = $config; // track order here
197 * Return a List holding list of configs.
203 return $this->configs;
209 foreach ($this->configs as $config) {
226 foreach ($this->configs as $config) {
241 foreach ($this->configs a
275 addAll(array $configs) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFAState.php44 public $configs; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState
96 public function __construct(?ATNConfigSet $configs = null, int $stateNumber = -1) argument
98 $this->configs = $configs ?? new ATNConfigSet();
126 return Equality::equals($this->configs, $other->configs);
131 $s = \sprintf('%d:%s', $this->stateNumber, (string) $this->configs);
148 return Hasher::hash($this->configs);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DANTLRErrorListener.php37 ATNConfigSet $configs argument
46 ATNConfigSet $configs argument
55 ATNConfigSet $configs argument
H A DDiagnosticErrorListener.php55 ATNConfigSet $configs argument
66 $this->getConflictingAlts($ambigAlts, $configs),
79 ATNConfigSet $configs argument
98 ATNConfigSet $configs argument
143 * @param ATNConfigSet $configs The conflicting or ambiguous
147 * the set of alternatives represented in `configs`.
149 protected function getConflictingAlts(?BitSet $reportedAlts, ATNConfigSet $configs) : BitSet argument
156 foreach ($configs->configs as $config) {
H A DBaseErrorListener.php38 ATNConfigSet $configs argument
48 ATNConfigSet $configs argument
58 ATNConfigSet $configs argument
H A DProxyErrorListener.php54 ATNConfigSet $configs argument
57 $listener->reportAmbiguity($recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $configs);
67 ATNConfigSet $configs argument
76 $configs
87 ATNConfigSet $configs argument
90 $listener->reportContextSensitivity($recognizer, $dfa, $startIndex, $stopIndex, $prediction, $configs);
/plugin/advanced/admin/
H A Dconfig.php94 $configs = $config_cascade[$file];
96 $file_default = @$configs['default'][0];
97 $file_local = @$configs['local'][0];
104 $configs = $config_cascade[$tab][$file];
107 if (is_array(@$configs)) {
108 $file_local = @$configs[0];
110 $file_local = $configs;
148 $configs = $config_cascade['userscript'];
149 if (is_array(@$configs['default'])) {
150 $file_local = @$configs['default'][0];
[all …]
/plugin/firenews/
H A Dtodo.md3 - [ ] configs for better usage
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md401 - [TEST] Add some missing and required static configs [[38febbe]](http://github.com/elasticsearch/elasticsearch-php/commit/38febbe)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc212 $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified)
539 $params['from'] = (int) skips a number of transform configs, defaults to 0
H A DTransformNamespace.asciidoc53 $params['from'] = (int) skips a number of transform configs, defaults to 0
H A DDataFrameTransformDeprecatedNamespace.asciidoc55 $params['from'] = (int) skips a number of transform configs, defaults to 0
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DServiceManagement.php235 'configs',
239 'path' => 'v1/services/{serviceName}/configs',
249 'path' => 'v1/services/{serviceName}/configs/{configId}',
268 'path' => 'v1/services/{serviceName}/configs',
286 'path' => 'v1/services/{serviceName}/configs:submit',
H A DApigateway.php226 'configs',
230 'path' => 'v1/{+parent}/configs',
282 'path' => 'v1/{+parent}/configs',
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firebaseappcheck/
H A DGoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DListGithubEnterpriseConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;

12