Home
last modified time | relevance | path

Searched refs:state (Results 1 – 25 of 186) sorted by relevance

12345678

/template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php36 foreach ($this->dfa->getStates() as $state) {
37 $count = $state->edges === null ? 0 : $state->edges->count();
41 $t = $state->edges[$i];
44 $string .= $this->getStateString($state);
61 protected function getStateString(DFAState $state) : string argument
63 if ($state->equals(ATNSimulator::error())) {
69 $state->isAcceptState ? ':' : '',
70 $state->stateNumber,
71 $state->requiresFullContext ? '^' : ''
74 if ($state->isAcceptState) {
[all …]
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php338 foreach ($atn->states as $state) {
339 if (!$state instanceof RuleStopState) {
343 $atn->ruleToStopState[$state->ruleIndex] = $state;
344 $atn->ruleToStartState[$state->ruleIndex]->stopState = $state;
409 foreach ($atn->states as $state) {
410 foreach ($state->getTransitions() as $t) {
427 foreach ($atn->states as $state) {
428 if ($state instanceof BlockStartState) {
430 if ($state->endState === null) {
435 if ($state->endState->startState !== null) {
[all …]
H A DATN.php106 public function nextTokensInContext(ATNState $state, ?RuleContext $context) : IntervalSet argument
108 return (new LL1Analyzer($this))->look($state, null, $context);
116 public function nextTokens(ATNState $state) : IntervalSet argument
118 if ($state->nextTokenWithinRule !== null) {
119 return $state->nextTokenWithinRule;
122 $state->nextTokenWithinRule = $this->nextTokensInContext($state, null);
123 $state->nextTokenWithinRule->setReadOnly(true);
125 return $state->nextTokenWithinRule;
128 public function addState(?ATNState $state) : void argument
130 if ($state === null) {
[all …]
H A DATNConfig.php35 public $state; variable in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfig
82 ?ATNState $state, argument
88 if ($state === null) {
92 $this->state = $state;
97 $this->state = $state ?? $oldConfig->state;
143 && Equality::equals($this->state, $other->state)
150 $this->state->stateNumber,
159 $buf = '(' . $this->state;
186 $this->state,
/template/strap/ComboStrap/Tag/
H A DFollowTag.php34 public static function renderSpecialEnterNode(TagAttributes $tagAttributes, $state): string argument
45 return self::returnErrorString($message, $state);
55 return self::returnErrorString($message, $state);
66 return self::returnErrorString($message, $state);
81 return self::returnErrorString($message, $state);
92 return self::returnErrorString($message,$state);
95 if ($state === DOKU_LEXER_SPECIAL) {
102 private static function returnErrorString($message, $state): string argument
106 if ($state === DOKU_LEXER_SPECIAL) {
/template/strap/syntax/
H A Dstrong.php107 * @param int $state
112 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
114 switch ($state) {
120 PluginUtility::STATE => $state,
140 $state = $data[PluginUtility::STATE];
141 switch ($state) {
164 $state = $data[PluginUtility::STATE];
165 if ($state == DOKU_LEXER_UNMATCHED) {
H A Dcodemarkdown.php129 * @param int $state
136 function handle($match, $state, $pos, Doku_Handler $handler) argument
139 switch ($state) {
147 PluginUtility::STATE => $state,
158 return array(PluginUtility::STATE => $state);
183 $state = $data [PluginUtility::STATE];
184 switch ($state) {
211 $state = $data [PluginUtility::STATE];
212 if ($state == DOKU_LEXER_UNMATCHED) {
H A Dhighlightmd.php101 * @param int $state
106 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
108 switch ($state) {
115 PluginUtility::STATE => $state,
134 $state = $data[PluginUtility::STATE];
135 switch ($state) {
153 $state = $data[PluginUtility::STATE];
154 switch ($state) {
H A Dpreformatted.php133 * @param int $state
140 function handle($match, $state, $pos, Doku_Handler $handler) argument
143 switch ($state) {
152 PluginUtility::STATE => $state,
157 PluginUtility::STATE => $state
161 PluginUtility::STATE => $state,
179 PluginUtility::STATE => $state,
203 $state = $data[PluginUtility::STATE];
205 switch ($state) {
H A Dtabpanels.php110 * @param int $state
117 function handle($match, $state, $pos, Doku_Handler $handler) argument
120 switch ($state) {
127 PluginUtility::STATE => $state,
140 PluginUtility::STATE => $state
166 $state = $data[PluginUtility::STATE];
168 switch ($state) {
H A Dcite.php85 * @param int $state
92 function handle($match, $state, $pos, Doku_Handler $handler) argument
95 switch ($state) {
100 PluginUtility::STATE => $state,
109 return array(PluginUtility::STATE => $state);
133 $state = $data [PluginUtility::STATE];
134 switch ($state) {
H A Dtab.php107 * @param int $state
114 function handle($match, $state, $pos, Doku_Handler $handler) argument
117 switch ($state) {
124 PluginUtility::STATE => $state,
136 PluginUtility::STATE => $state
162 $state = $data[PluginUtility::STATE];
163 switch ($state) {
H A Dfooter.php116 * @param int $state
123 function handle($match, $state, $pos, Doku_Handler $handler) argument
126 switch ($state) {
132 PluginUtility::STATE => $state,
142 PluginUtility::STATE => $state
168 $state = $data[PluginUtility::STATE];
169 switch ($state) {
H A Dcode.php116 * @param int $state
123 function handle($match, $state, $pos, Doku_Handler $handler) argument
126 switch ($state) {
131 PluginUtility::STATE => $state,
161 PluginUtility::STATE => $state,
188 $state = $data [PluginUtility::STATE];
189 switch ($state) {
220 $state = $data [PluginUtility::STATE];
221 if ($state == DOKU_LEXER_UNMATCHED) {
H A Dhighlightwiki.php141 * @param int $state
146 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
148 switch ($state) {
153 PluginUtility::STATE => $state
172 $state = $data[PluginUtility::STATE];
173 switch ($state) {
193 $state = $data[PluginUtility::STATE];
194 switch ($state) {
H A Dtoc.php97 * @param int $state
104 function handle($match, $state, $pos, Doku_Handler $handler): array argument
107 if ($state == DOKU_LEXER_SPECIAL) {
110 PluginUtility::STATE => $state,
134 $state = $data[PluginUtility::STATE];
138 if ($state == DOKU_LEXER_SPECIAL) {
H A Dtooltip.php131 * @param int $state
138 function handle($match, $state, $pos, Doku_Handler $handler): array argument
141 switch ($state) {
146 PluginUtility::STATE => $state,
163 PluginUtility::STATE => $state,
170 PluginUtility::STATE => $state,
196 PluginUtility::STATE => $state
220 $state = $data[PluginUtility::STATE];
221 switch ($state) {
H A Dcontentlistitem.php117 * @param int $state
124 function handle($match, $state, $pos, Doku_Handler $handler) argument
127 switch ($state) {
134 PluginUtility::STATE => $state,
145 PluginUtility::STATE => $state
176 $state = $data[PluginUtility::STATE];
177 switch ($state) {
H A Daccordion.php135 * @param int $state
142 function handle($match, $state, $pos, Doku_Handler $handler) argument
145 switch ($state) {
162 PluginUtility::STATE => $state,
174 PluginUtility::STATE => $state
200 $state = $data[PluginUtility::STATE];
201 switch ($state) {
H A Dnavbargroup.php122 * @param int $state
129 function handle($match, $state, $pos, Doku_Handler $handler) argument
132 switch ($state) {
139 PluginUtility::STATE => $state,
149 return array(PluginUtility::STATE => $state);
171 $state = $data[PluginUtility::STATE];
176 switch ($state) {
/template/starterpjax/
Djquery.pjax.js253 pjax.state = {
263 window.history.replaceState(pjax.state, container.title, container.url)
285 pjax.state.url = url.href
286 window.history.replaceState(pjax.state, container.title, url.href)
300 if (!pjax.state) {
301 pjax.state = {
309 window.history.replaceState(pjax.state, document.title)
325 cachePush(pjax.state.id, context.clone().contents())
365 var initialState = window.history.state
371 pjax.state = initialState
[all …]
/template/ad-hominem/css/
H A D_modal.css32 .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-…
37 .ui-state-default,
38 .ui-widget-content .ui-state-default,
39 .ui-widget-header .ui-state-default,
41 html .ui-button.ui-state-disabled:hover,
42 html .ui-button.ui-state-disabled:active {
48 .dokuwiki .ui-state-active,
49 .dokuwiki .ui-widget-content .ui-state-active,
50 .dokuwiki .ui-widget-header .ui-state-active,
53 .dokuwiki .ui-button.ui-state-active:hover {
[all …]
/template/retro/css/
H A Dthemes.less159state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focu…
165 ….ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-bu…
/template/minimal/css/
H A Dthemes.less159state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focu…
165 ….ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-bu…
/template/parabola/
H A Drunmobilemenu.js2 var state = false; variable
5 …jQuery("#access").slideToggle(function(){ if (state) {jQuery(this).removeAttr( 'style' )}; state =…

12345678