| /plugin/combo/vendor/carica/phpcss/src/PhpCss/ |
| H A D | Parser.php | 25 protected $_tokens = array(); variable in PhpCss\\Parser 32 $this->_tokens = &$tokens; 39 return $this->_tokens; 91 return array_shift($this->_tokens); 138 if ($allowEndOfTokens === TRUE && (!isset($this->_tokens[$position]))) { 144 return $this->_tokens[$position]; 160 return (count($this->_tokens) <= $position); 193 while (count($this->_tokens) > $position) { 207 array_splice($this->_tokens, 0, $position); 227 $parser = new $parserClass($this->_tokens); [all …]
|
| /plugin/asciidocjs/node_modules/token-stream/ |
| D | index.js | 8 this._tokens = tokens; 11 if (this._tokens.length <= index) { 14 return this._tokens[index]; 17 if (this._tokens.length === 0) { 20 return this._tokens[0]; 23 if (this._tokens.length === 0) { 26 return this._tokens.shift(); 29 this._tokens.unshift(token);
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
| D | File.php | 181 private $_tokens = array(); variable in PHP_CodeSniffer_File 427 return $this->_tokens; 488 foreach ($this->_tokens as $stackPtr => $token) { 639 $this->_tokens = null; 655 if ($contents === null && empty($this->_tokens) === false) { 701 …$this->_tokens = self::tokenizeString($contents, $tokenizer, $this->eolChar, $tabWidth, $encoding); 714 $this->numTokens = count($this->_tokens); 734 $numLines = $this->_tokens[($this->numTokens - 1)]['line']; 826 $line = $this->_tokens[$stackPtr]['line']; 827 $column = $this->_tokens[$stackPtr]['column']; [all …]
|
| D | Fixer.php | 66 private $_tokens = array(); variable in PHP_CodeSniffer_Fixer 134 $this->_tokens = array(); 137 $this->_tokens[$index] = $token['orig_content']; 139 $this->_tokens[$index] = $token['content']; 334 $contents = implode($this->_tokens); 357 return $this->_tokens[$stackPtr]; 515 $oldContent = PHP_CodeSniffer::prepareForOutput($this->_tokens[$stackPtr]); 517 … if (trim($this->_tokens[$stackPtr]) === '' && isset($this->_tokens[($stackPtr + 1)]) === true) { 519 $append = PHP_CodeSniffer::prepareForOutput($this->_tokens[($stackPtr + 1)]); 540 'prev' => $this->_tokens[$stackPtr], [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Llk/ |
| D | Lexer.php | 70 protected $_tokens = []; variable in Hoa\\Compiler\\Llk\\Lexer 114 $this->_tokens = $tokens; 121 foreach ($this->_tokens as &$tokens) { 122 $_tokens = []; 126 $_tokens[$fullLexeme] = [$regex, null]; 136 $_tokens[$lexeme] = [$regex, $namespace]; 139 $tokens = $_tokens; 192 $tokenArray = &$this->_tokens[$this->_lexerState]; 237 if (!isset($this->_tokens[$nextState])) {
|
| D | Parser.php | 72 protected $_tokens = null; variable in Hoa\\Compiler\\Llk\\Parser 137 $this->_tokens = $tokens; 163 $lexer->lexMe($text, $this->_tokens), 332 if (isset($this->_tokens[$namespace][$name])) { 333 $zzeRule->setRepresentation($this->_tokens[$namespace][$name]); 335 foreach ($this->_tokens[$namespace] as $_name => $regex) { 724 return $this->_tokens;
|
| /plugin/authg2fa/ |
| D | admin.php | 21 protected $_tokens = array(); variable in admin_plugin_authg2fa 53 $this->_tokens = $this->_tokenHelper->getTokens(); 79 …case "csecret" : $this->_tokenHelper->createTokenForUser($param); $this->_tokens = $this->_toke… 81 …case "dsecret" : $this->_tokenHelper->deleteTokenForUser($param); $this->_tokens = $this->_toke… 108 if(isset($this->_tokens[$this->_unhide])) { 110 …$url = $ga->getQRCodeGoogleUrl(urlencode('DokuWiki:'.$this->_unhide), $this->_tokens[$this->_unhid… 126 if(isset($this->_tokens[$user])) 127 $secret = $this->_tokens[$user]; 229 if(!isset($this->_tokens[$user])) 232 $this->_tokens = $this->_tokenHelper->getTokens();
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/ |
| D | Sampler.php | 65 protected $_tokens = null; variable in Hoa\\Compiler\\Llk\\Sampler\\Sampler 114 $this->_tokens = $compiler->getTokens(); 148 $this->_tokens[$this->_currentNamespace]['skip'] 174 if (isset($this->_tokens[$this->_currentNamespace][$name])) { 176 $this->_tokens[$this->_currentNamespace][$name] 179 foreach ($this->_tokens[$this->_currentNamespace] as $_name => $regex) { 225 if (isset($this->_tokens[$this->_currentNamespace]['skip'])) {
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/ |
| D | Ll1.php | 109 protected $_tokens = []; variable in Hoa\\Compiler\\Ll1 374 $_tokens = array_flip($this->_tokens[$c]); 495 $_tokens = array_flip($this->_tokens[$c]); 518 if (isset($_tokens[$nextChar])) { 520 $nextToken = $_tokens[$token]; 532 foreach ($_tokens as $token => $e) { 595 $_tokens = array_flip($this->_tokens[$c]); 727 $old = $this->_tokens; 728 $this->_tokens = $tokens; 840 return $this->_tokens; [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/ |
| D | AbstractScopeSniff.php | 55 private $_tokens = array(); variable in PHP_CodeSniffer_Standards_AbstractScopeSniff 110 $this->_tokens = $tokens; 127 return $this->_tokens;
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/ |
| D | Analyzer.php | 87 protected $_tokens = null; variable in Hoa\\Compiler\\Llk\\Rule\\Analyzer 126 $this->_tokens = $tokens; 428 foreach ($this->_tokens as $namespace => $tokens) { 471 foreach ($this->_tokens as $namespace => $tokens) {
|
| /plugin/pdfjs/pdfjs/build/ |
| D | pdf.js | 1148 for (var _i = 0, _tokens = tokens; _i < _tokens.length; _i++) { 1149 var token = _tokens[_i];
|
| D | pdf.worker.js | 2317 for (var _i = 0, _tokens = tokens; _i < _tokens.length; _i++) { 2318 var token = _tokens[_i];
|
| /plugin/dirtylittlehelper/mermaid/editor/ |
| D | bundle.js | 426 …_tokens=[],this._language=null,this._lastTokenType=null,this._lastTokenLanguage=null}enterMode(e,t…
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | bundle.js | 426 …_tokens=[],this._language=null,this._lastTokenType=null,this._lastTokenLanguage=null}enterMode(e,t…
|
| D | bundle.js.map | 1 …_tokens = Lexer_1.lex(src, opt);\n\n if (opt.walkTokens) {\n marked.walkTokens(_tokens…
|