Home
last modified time | relevance | path

Searched refs:nextToken (Results 1 – 25 of 44) sorted by last modified time

12

/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js26762 …for (var nextToken = scanner.nextCharacterToken; nextToken !== null; nextToken = scanner.nextChara…
26796 if (!nextToken) {
26926 if (!scanner.hasMoreCharacters || nextToken !== null && isTokenRowDelimiter(nextToken)) {
26931 if (nextToken !== null && isTokenDelimiter(nextToken, parserOptions)) {
27260 for (; nextToken; nextToken = scanner.nextCharacterToken) {
27261 if (isTokenDelimiter(nextToken, parserOptions) || isTokenRowDelimiter(nextToken)) {
27265 characters.push(nextToken.token);
27266 scanner.advancePastToken(nextToken);
27347 for (; !foundClosingQuote && nextToken !== null; nextToken = scanner.nextCharacterToken) {
27374 characters.push(nextToken.token);
[all …]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfIndirectObject.php46 $nextToken = $tokenizer->getNextToken();
47 if ($nextToken === 'stream') {
49 } elseif ($nextToken !== false) {
50 $tokenizer->pushStack($nextToken);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DTokenSource.php8 * A source of tokens must provide a sequence of tokens via {@see TokenSource::nextToken()}
30 public function nextToken() : ?Token; function
H A DBufferedTokenStream.php164 $token = $this->tokenSource->nextToken();
H A DLexer.php41 * create a single token. `nextToken` will return this object after
55 * the start of nextToken.
153 public function nextToken() : ?Token function in Antlr\\Antlr4\\Runtime\\Lexer
231 * and look for another token. `nextToken` knows to keep looking when
305 * By default does not support multiple emits per nextToken invocation
306 * for efficiency reasons. Subclass and override this method, nextToken,
494 $token = $this->nextToken();
498 $token = $this->nextToken();
/plugin/katex/_assets/
H A Dkatex.min.js1nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column a…
/plugin/a2s/
H A DASCIIToSVG.php1303 public function /*Yytoken*/ nextToken () function in dokuwiki\\plugin\\a2s\\A2S_Yylex
1808 while ($t = $S->nextToken()) {
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dcommons-lang3-3.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1nextToken = this._scanner.next();\n if (nextToken.type !== 0 /* Dollar */\n …
H A D3.3.js.map1 …os(nextToken) {\n if (offset === scanner.getTokenEnd()) {\n token = scan…
/plugin/ol3/
H A Dscript.js8nextToken=function(){var t,e=this.nextChar_(),r=this.index_,n=e;if("("==e)t=BT;else if(","==e)t=WT… method in t
/plugin/codemirror/dist/
H A Dscripts.min.js.map1nextToken","ret","classBase","spaceChars","spaceChar","getStyle","getEOL","parserConfig","dokuMode…
/plugin/codemirror/dist/modes/
H A Dpug.min.js.map1nextToken","defineMIME"],"mappings":"CAGA,SAAUA,GACR,SAAWC,UAAW,gBAAmBC,SAAU,SACjDF,EAAIG,QAAQ,wBA…
H A Dwebidl.min.js.map1nextToken","next","defineMode","startState","token","style","cur","current","test","defineMIME"],"…
/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js54263 value: function nextToken() {
54271 this.nextToken();
54289 this.nextToken();
H A Dpdf.worker.js.map1nextToken() {\n this.prev = this.token;\n this.token = this.lexer.getToken();\n }\n\n acce…
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DLl1.php379 $nextToken = 0;
491 $this->_stack[$d] = [$c, $nextState, $nextToken];
500 $nextToken = 0;
514 $nextToken = false;
520 $nextToken = $_tokens[$token];
529 $nextToken = false;
550 $nextToken = $e;
568 if (false !== $nextToken) {
569 if (is_array($this->_actions[$c][$nextState][$nextToken])) {
578 if (false === $nextToken || $nextState === $_states['__']) {
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLexer.php147 $nextToken = $this->nextToken($offset);
149 if (null === $nextToken) {
165 if (true === $nextToken['keep']) {
166 $nextToken['offset'] = $offset;
167 yield $nextToken;
170 $offset += strlen($nextToken['value']);
190 protected function nextToken($offset) function in Hoa\\Compiler\\Llk\\Lexer
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DUnusedFunctionParameterSniff.php130 $nextToken = $phpcsFile->findNext(T_WHITESPACE, ($next + 1), null, true);
131 if ($tokens[$nextToken]['code'] === T_OPEN_CURLY_BRACKET) {
132 $nextToken = $phpcsFile->findNext(T_WHITESPACE, ($nextToken + 1), null, true);
133 if ($tokens[$nextToken]['code'] === T_STRING) {
134 $varContent = '$'.$tokens[$nextToken]['content'];
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/
H A DFunctionCallArgumentSpacingSniff.php153 …$nextToken = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($nextSeparator + 1), $clo…
154 if ($nextToken !== false) {
155 if ($tokens[$nextToken]['code'] === T_EQUAL) {
156 if (($tokens[($nextToken - 1)]['code']) !== T_WHITESPACE) {
158 … $fix = $phpcsFile->addFixableError($error, $nextToken, 'NoSpaceBeforeEquals');
160 $phpcsFile->fixer->addContentBefore($nextToken, ' ');
164 if ($tokens[($nextToken + 1)]['code'] !== T_WHITESPACE) {
166 … $fix = $phpcsFile->addFixableError($error, $nextToken, 'NoSpaceAfterEquals');
168 $phpcsFile->fixer->addContent($nextToken, ' ');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/
H A DArrayDeclarationSniff.php359 for ($nextToken = ($stackPtr + 1); $nextToken < $arrayEnd; $nextToken++) {
365 $nextToken = $tokens[$nextToken]['parenthesis_closer'];
380 … $nextToken = $tokens[$tokens[$nextToken]['parenthesis_opener']]['parenthesis_closer'];
382 $nextToken = $tokens[$nextToken]['bracket_closer'];
385 $nextToken = $tokens[$nextToken]['scope_closer'];
388 $nextToken = $phpcsFile->findNext(T_WHITESPACE, ($nextToken + 1), null, true);
390 $nextToken--;
458 $nextToken,
466 $lastToken = $nextToken;
500 ($nextToken + 1),
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DBlockCommentSniff.php87 …$nextToken = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($stackPtr + 1), null, tru…
102 if (isset($ignore[$tokens[$nextToken]['code']]) === true) {
H A DInlineCommentSniff.php76 $nextToken = $phpcsFile->findNext(
103 if (in_array($tokens[$nextToken]['code'], $ignore) === true) {
114 $nextToken = $phpcsFile->findNext($ignore, ($nextToken + 1), null, true);
115 if ($tokens[$nextToken]['code'] === T_FUNCTION
116 || $tokens[$nextToken]['code'] === T_CLOSURE
117 || $tokens[$nextToken]['code'] === T_OBJECT
118 || $tokens[$nextToken]['code'] === T_PROTOTYPE
H A DLongConditionClosingCommentSniff.php125 … if ($tokens[$nextToken]['code'] === T_ELSE || $tokens[$nextToken]['code'] === T_ELSEIF) {
127 if ($tokens[$nextToken]['code'] === T_ELSE
128 && isset($tokens[$nextToken]['scope_closer']) === false
130 … $nextToken = $phpcsFile->findNext(T_WHITESPACE, ($nextToken + 1), null, true);
131 if ($tokens[$nextToken]['code'] !== T_IF
139 if (isset($tokens[$nextToken]['scope_closer']) === false) {
146 $stackPtr = $tokens[$nextToken]['scope_closer'];
151 } while (isset($tokens[$nextToken]['scope_closer']) === true);
158 if ($tokens[$nextToken]['code'] === T_CATCH) {
160 $stackPtr = $tokens[$nextToken]['scope_closer'];
[all …]

12