| /template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/ |
| H A D | DFASerializer.php | 36 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 D | ATNDeserializer.php | 338 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 D | ATN.php | 106 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 D | ATNConfig.php | 35 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 D | FollowTag.php | 34 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 D | strong.php | 107 * @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 D | codemarkdown.php | 129 * @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 D | highlightmd.php | 101 * @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 D | preformatted.php | 133 * @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 D | tabpanels.php | 110 * @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 D | cite.php | 85 * @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 D | tab.php | 107 * @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 D | footer.php | 116 * @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 D | code.php | 116 * @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 D | highlightwiki.php | 141 * @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 D | toc.php | 97 * @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 D | tooltip.php | 131 * @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 D | contentlistitem.php | 117 * @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 D | accordion.php | 135 * @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 D | navbargroup.php | 122 * @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/ |
| D | jquery.pjax.js | 253 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.css | 32 .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 D | themes.less | 159 …state-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 D | themes.less | 159 …state-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 D | runmobilemenu.js | 2 var state = false; variable 5 …jQuery("#access").slideToggle(function(){ if (state) {jQuery(this).removeAttr( 'style' )}; state =…
|