| /dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/ |
| H A D | Parser.php | 69 public $state = self::STATE_BEFORE_VERSION_NAME; variable in SimplePie\\XML\\Declaration\\Parser 115 while ($this->state && $this->state !== self::STATE_EMIT && $this->has_data()) { 116 $state = $this->state; 117 $this->$state(); 120 if ($this->state === self::STATE_EMIT) { 177 $this->state = self::STATE_VERSION_NAME; 179 $this->state = self::STATE_ERROR; 188 $this->state = self::STATE_VERSION_EQUALS; 190 $this->state = self::STATE_ERROR; 199 $this->state = self::STATE_VERSION_VALUE; [all …]
|
| /dokuwiki/inc/Parsing/ |
| H A D | Handler.php | 84 * @param int $state The lexer state (DOKU_LEXER_* constant) 89 public function handleToken($modeName, $match, $state, $pos, $originalModeName = '') argument 97 return $this->plugin($match, $state, $pos, $plugin); 102 return $this->modeObjects[$modeName]->handle($match, $state, $pos, $this); 178 * @param int $state a LEXER_STATE_* constant 182 public function addPluginCall($plugin, $args, $state, $pos, $match) argument 184 $call = ['plugin', [$plugin, $args, $state, $match], $pos]; 223 * @param int $state a LEXER_STATE_* constant 229 public function plugin($match, $state, $pos, $pluginname) argument 235 $data = $plugin->handle($match, $state, $pos, $this); [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/HTTP/ |
| H A D | Parser.php | 89 protected $state = self::STATE_HTTP_VERSION; variable in SimplePie\\HTTP\\Parser 146 while ($this->state && $this->state !== self::STATE_EMIT && $this->has_data()) { 147 $state = $this->state; 148 $this->$state(); 151 if ($this->state === self::STATE_EMIT || $this->state === self::STATE_BODY) { 201 $this->state = self::STATE_STATUS; 203 $this->state = self::STATE_ERROR; 206 $this->state = self::STATE_ERROR; 219 $this->state = self::STATE_REASON; 221 $this->state = self::STATE_ERROR; [all …]
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | StateStack.php | 41 * @param string $state New state. 43 public function enter($state) argument 45 $this->stack[] = $state;
|
| /dokuwiki/_test/tests/Parsing/Lexer/ |
| H A D | RecordingHandler.php | 17 public function handleToken($modeName, $match, $state, $pos, $originalModeName = '') argument 19 $this->recorded[] = [$modeName, $match, $state, $pos];
|
| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | ModeInterface.php | 53 * @param int $state The lexer state (DOKU_LEXER_ENTER, _EXIT, _MATCHED, etc.) 58 public function handle($match, $state, $pos, Handler $handler); argument
|
| H A D | Unformatted.php | 31 public function handle($match, $state, $pos, Handler $handler) argument 33 if ($state == DOKU_LEXER_UNMATCHED) {
|
| H A D | Base.php | 33 public function handle($match, $state, $pos, Handler $handler) argument 35 if ($state === DOKU_LEXER_UNMATCHED) {
|
| H A D | AbstractFormatting.php | 74 public function handle($match, $state, $pos, Handler $handler) argument 77 match ($state) {
|
| H A D | Quote.php | 44 public function handle($match, $state, $pos, Handler $handler) argument 46 switch ($state) {
|
| H A D | Preformatted.php | 38 public function handle($match, $state, $pos, Handler $handler) argument 40 switch ($state) {
|
| H A D | Nocache.php | 22 public function handle($match, $state, $pos, Handler $handler) argument
|
| H A D | Linebreak.php | 22 public function handle($match, $state, $pos, Handler $handler) argument
|
| H A D | Hr.php | 22 public function handle($match, $state, $pos, Handler $handler) argument
|
| H A D | Notoc.php | 22 public function handle($match, $state, $pos, Handler $handler) argument
|
| H A D | Camelcaselink.php | 26 public function handle($match, $state, $pos, Handler $handler) argument
|
| H A D | Footnote.php | 53 public function handle($match, $state, $pos, Handler $handler) argument 55 switch ($state) {
|
| H A D | Listblock.php | 55 public function handle($match, $state, $pos, Handler $handler) argument 57 switch ($state) {
|
| H A D | Multiplyentity.php | 30 public function handle($match, $state, $pos, Handler $handler) argument
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | Rijndael.php | 324 $state = []; 335 $state[] = $word ^ $w[++$wc]; 354 $temp[$i] = $t0[$state[$i] >> 24 & 0x000000FF] ^ 355 $t1[$state[$j] >> 16 & 0x000000FF] ^ 356 $t2[$state[$k] >> 8 & 0x000000FF] ^ 357 $t3[$state[$l] & 0x000000FF] ^ 364 $state = $temp; 369 $state[$i] = $sbox[$state[$i] & 0x000000FF] | 370 ($sbox[$state[$i] >> 8 & 0x000000FF] << 8) | 371 ($sbox[$state[$i] >> 16 & 0x000000FF] << 16) | [all …]
|
| /dokuwiki/lib/scripts/ |
| H A D | page.js | 146 makeToggle: function(handle, content, state){ argument 169 $handle[0].setState = function(state){ argument 171 if(!state) state = 1; 180 if(state === -1) { 182 } else if(state === 1) { 208 $handle[0].setState(state);
|
| H A D | behaviour.js | 32 jQuery.fn.dw_toggle = function(state, fn, noaria) { argument 35 if (typeof state === 'undefined') { 36 state = $this.is(':hidden'); 38 $this[state ? "dw_show" : "dw_hide" ](fn, noaria);
|
| /dokuwiki/inc/Extension/ |
| H A D | SyntaxPlugin.php | 74 * @param int $state The lexer state for the match 79 abstract public function handle($match, $state, $pos, Handler $handler); argument
|
| /dokuwiki/vendor/paragonie/constant_time_encoding/src/ |
| H A D | Hex.php | 139 $state = 0; 167 if ($state === 0) { 172 $state ^= 1;
|
| /dokuwiki/lib/scripts/jquery/jquery-ui-theme/ |
| H A D | smoothness.css | 57 .ui-state-disabled { 136 .ui-menu .ui-state-focus, 137 .ui-menu .ui-state-active { 838 .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, 899 .ui-state-default, 900 .ui-widget-content .ui-state-default, 901 .ui-widget-header .ui-state-default, 906 html .ui-button.ui-state-disabled:hover, 907 html .ui-button.ui-state-disabled:active { 913 .ui-state-default a, [all …]
|