Home
last modified time | relevance | path

Searched refs:tokens (Results 26 – 50 of 386) sorted by path

12345678910>>...16

/plugin/codemirror/dist/modes/
H A Dlua.min.js.map1 …hlights keywords, strings, comments (no leveling supported! (\"[==[\")), tokens, basic indenting\n…
H A Dshell.min.js1tokens.unshift(h(e,e==="`"?"quote":"string"));return k(a,c)}if(e==="#"){if(d&&a.eat("!")){a.skipTo…
H A Dshell.min.js.map1tokens","unshift","tokenString","tokenize","eat","skipToEnd","tokenDollar","eatWhile","test","eol"…
H A Dtroff.min.js1 …roperty(e)?a[e]:null}function c(a,c){return(c.tokens[0]||b)(a,c)}return{startState:function(){retu…
H A Dtroff.min.js.map1tokens","startState","token","defineMIME"],"mappings":"CAGA,SAAUA,GACR,SAAWC,UAAW,gBAAmBC,SAAU,SAC…
H A Dverilog.min.js.map1 …inition of cm-tlv-* styles, including highlighting for:\n // - M4 tokens\n // - TLV …
/plugin/codemirror/dist/
H A Dscripts.min.js.map1tokens","extractLineClasses","output","lineClass","flattenSpans","curStart","curStyle","addModeCla…
/plugin/codeprettify/code-prettify/src/
H A Dnode_prettify.js753 var tokens = sourceCode.match(tokenizer) || [];
756 for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
757 var token = tokens[ti];
H A Dprettify.js801 var tokens = sourceCode.match(tokenizer) || [];
804 for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
805 var token = tokens[ti];
H A Drun_prettify.js1030 var tokens = sourceCode.match(tokenizer) || [];
1033 for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
1034 var token = tokens[ti];
/plugin/combo/ComboStrap/
H A DMarkupRef.php586 $tokens = explode("=", $token, 2);
587 $key = $tokens[0];
588 if (count($tokens) == 2) {
589 $value = $tokens[1];
H A DPageSql.php53 $tokens = new CommonTokenStream($lexer);
54 $parser = new PageSqlParser($tokens);
/plugin/combo/grammar/
H A DPageSql.g4144 * Fragment rules does not result in tokens visible to the parser.
145 * They aid in the recognition of tokens.
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md87 $tokens = new CommonTokenStream($lexer);
88 $parser = new JSONParser($tokens);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php10 * This implementation of {@see TokenStream} loads tokens from a
11 * {@see TokenSource} on-demand, and places the tokens in a buffer to provide
15 * parser requires the token stream filter tokens to only those on a particular
23 * The {@see TokenSource} from which tokens for this stream are fetched.
30 * A collection of all tokens fetched from the token source. The list is
36 protected $tokens = []; variable in Antlr\\Antlr4\\Runtime\\BufferedTokenStream
39 * The index into {@see BufferedTokenStream::tokens()} of the current token
41 * {@see BufferedTokenStream::tokens()}`[{@see BufferedTokenStream::p()}]`
57 * {@see BufferedTokenStream::tokens()}. This field improves performance
67 * EOF symbols into {@see BufferedTokenStream::tokens()} i
[all...]
H A DCommonTokenStream.php9 * token streams to tokens on a particular channel (tokens where
12 * This token stream provides access to all tokens by index or when calling
14 * is only used for code accessing tokens via the lookahead methods
18 * By default, tokens are placed on the default channel
26 * {@see Lexer::skip()} do not produce tokens at all, so input text matched by
33 * Specifies the channel to use for filtering tokens.
37 * default channel assigned to tokens created by the lexer.
45 * source and filtering tokens to the specified channel. Only tokens whos
[all...]
H A DLexer.php307 * and getToken (to push tokens into a list and pull from that list
442 * Override if emitting multiple tokens.
487 * Forces load of all tokens. Does not include EOF token.
493 $tokens = [];
497 $tokens[] = $token;
501 return $tokens;
H A DParserRuleContext.php30 * the `text` property anyway if the rule matches tokens from multiple
41 * we need to track all of the tokens and rule invocations associated
216 $tokens = [];
219 $tokens[] = $child;
223 return $tokens;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php162 * The default implementation resynchronizes the parser by consuming tokens
163 * until we find one in the resynchronization set--loosely the set of tokens
258 $tokens = $recognizer->getInputStream();
260 if ($tokens === null) {
264 $la = $tokens->LA(1);
324 $tokens = $recognizer->getTokenStream();
328 if ($tokens !== null) {
338 $input = $tokens->getTextByTokens($e->getStartToken(), $e->getOffendingToken());
361 throw new \RuntimeException('Unexpected null expected tokens.');
510 * `LA(1)==';'` is in the set of tokens tha
[all...]
/plugin/combo/vendor/carica/phpcss/src/
H A DPhpCss.php53 $tokens = array();
55 $scanner->scan($tokens, $cssSelector);
56 $parser = new PhpCss\Parser\Standard($tokens);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/
H A DParser.php21 * List of tokens from scanner
31 public function __construct(array &$tokens) { argument
32 $this->_tokens = &$tokens;
36 * Return parser tokens list
65 * provided tokens. If a match is found it is removed from the token list
71 * The $expectedTokens parameter may be an array of tokens or a scalar
95 // None of the given tokens matched
104 * lookahead position against all of the provided tokens. If a match is
110 * The $expectedTokens parameter may be an array of tokens or a scalar
148 // None of the given tokens matche
[all...]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DStandard.php27 public function __construct(array &$tokens, $options = 0) { argument
28 parent::__construct($tokens);
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHandlebars.php526 $tokens = $this->getTokenizer()->scan($source);
527 $tree = $this->getParser()->parse($tokens);
H A DParser.php6 * Handlebars tokens.
27 * Process array of tokens and convert them into parse tree
29 * @param array $tokens Set of
33 public function parse(Array $tokens = []) argument
35 return $this->buildTree(new ArrayIterator($tokens));
41 * @param \ArrayIterator $tokens Stream of tokens
48 private function buildTree(ArrayIterator $tokens) argument
53 $token = $tokens->current();
54 $tokens
[all...]
H A DTokenizer.php79 protected $tokens; variable in Handlebars\\Tokenizer
91 * @return array Set of Mustache tokens
191 $this->tokens[] = $t;
201 // Clean up `{{{ tripleStache }}}` style tokens.
202 $lastIndex = count($this->tokens) - 1;
203 $lastName = $this->tokens[$lastIndex][self::NAME];
205 $this->tokens[$lastIndex][self::NAME] = trim(
221 return $this->tokens;
235 $this->tokens = [];
250 $this->tokens[]
[all...]

12345678910>>...16