Home
last modified time | relevance | path

Searched refs:Token (Results 1 – 25 of 327) sorted by path

12345678910>>...14

/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.min.js6 …RefErr3d":break;case"PtgMemFunc":break;default:throw"Unrecognized Formula Token: "+f}}return stack…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudNaturalLanguage/
H A DAnalyzeSyntaxResponse.php29 protected $tokensType = Token::class;
61 * @param Token[]
68 * @return Token[]
H A DAnnotateTextResponse.php35 protected $tokensType = Token::class;
109 * @param Token[]
116 * @return Token[]
H A DToken.php20 class Token extends \Google\Model class
92 class_alias(Token::class, 'Google_Service_CloudNaturalLanguage_Token');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/Resource/
H A DTokens.php20 use Google\Service\Directory\Token; alias
57 * @return Token
63 return $this->call('get', [$params], Token::class);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DToken.php20 class Token extends \Google\Collection class
171 class_alias(Token::class, 'Google_Service_Directory_Token');
H A DTokens.php27 protected $itemsType = Token::class;
49 * @param Token[]
56 * @return Token[]
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md127 #### Call using an ID Token
/plugin/codemirror/dist/modes/
H A Ddylan.min.js.map1 … stream.eatWhile(/[0-7]/);\n return \"number\";\n }\n // Token concatenation in m…
H A Debnf.min.js.map1 … }\n return state.lhs ? \"property string\" : \"string\"; // Token style\n\n c…
H A Derlang.min.js.map1Token objects.\n // tt is an object; {type:tokens}\n // type is a char, tokens is a list of …
H A Dpegjs.min.js.map1 … }\n return state.lhs ? \"property string\" : \"string\"; // Token style\n } els…
H A Dsmalltalk.min.js.map1Token","name","context","eos","State","expectVariable","indentation","userIndentationDelta","proto…
H A Dstylus.min.js.map1Token comment\n */\n function tokenCComment(stream, state) {\n var maybeEnd = false, c…
H A Dtoml.min.js.map1 … }\n return state.lhs ? \"property string\" : \"string\"; // Token style\n } els…
/plugin/codemirror/dist/
H A Dscripts.min.js.map1Token","takeToken","asArray","tokens","extractLineClasses","output","lineClass","flattenSpans","cu…
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlParser.php17 use Antlr\Antlr4\Runtime\Token; alias
302 if ($this->input->LA(1) === Token::EOF) {
338 if ($this->input->LA(1) === Token::EOF) {
374 if ($this->input->LA(1) === Token::EOF) {
470 if ($this->input->LA(1) === Token::EOF) {
514 if ($this->input->LA(1) === Token::EOF) {
594 if ($this->input->LA(1) === Token::EOF) {
781 if ($this->input->LA(1) === Token::EOF) {
850 if ($this->input->LA(1) === Token::EOF) {
1023 if ($this->input->LA(1) === Token
1135 use Antlr\Antlr4\Runtime\Token; global() alias
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATN.php18 use Antlr\Antlr4\Runtime\Token; alias
113 * staying in same rule. {@see Token::EPSILON} is in set if we reach end of
176 * symbols, {@see Token::EOF} is added to the returned set.
197 if (!$following->contains(Token::EPSILON)) {
204 $expected->removeOne(Token::EPSILON);
210 while ($context !== null && $context->invokingState >= 0 && $following->contains(Token::EPSILON)) {
221 $expected->removeOne(Token::EPSILON);
226 if ($following->contains(Token::EPSILON)) {
227 $expected->addOne(Token::EOF);
H A DATNDeserializer.php44 use Antlr\Antlr4\Runtime\Token; alias
330 $tokenType = Token::EOF;
778 new RangeTransition($target, Token::EOF, $arg2) :
797 return $arg3 !== 0 ? new AtomTransition($target, Token::EOF) : new AtomTransition($target, $arg1);
H A DLexerATNSimulator.php22 use Antlr\Antlr4\Runtime\Token; alias
238 if ($t !== Token::EOF) {
244 if ($t === Token::EOF) {
344 return Token::EOF;
397 $treatEofAsEpsilon = ($t === Token::EOF);
657 if ($t->matches(Token::EOF, 0, Lexer::MAX_CHAR_VALUE)) {
H A DParserATNSimulator.php33 use Antlr\Antlr4\Runtime\Token; alias
968 if ($skippedStopStates === null && $t !== Token::EOF) {
987 $treatEofAsEpsilon = $t === Token::EOF;
1083 if ($nextTokens->contains(Token::EPSILON)) {
2044 if ($t->matches(Token::EOF, 0, 1)) {
2269 if ($t === Token::EOF) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DSetTransition.php9 use Antlr\Antlr4\Runtime\Token; alias
27 $this->set->addOne(Token::INVALID_TYPE);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php14 * This token stream ignores the value of {@see Token::getChannel()}. If your
16 * channel, such as {@see Token::DEFAULT_CHANNEL} or
17 * {@see Token::HIDDEN_CHANNEL}, use a filtering token stream such a
34 * @var array<Token>
55 * Indicates whether the {@see Token::EOF} token has been fetched from
126 if (!$skipEofCheck && $this->LA(1) === Token::EOF) {
169 if ($token->getType() === Token::EOF) {
179 public function get(int $index) : Token
185 'Token index %d out of range 0..%d.',
200 return $token === null ? Token
[all...]
H A DCommonToken.php42 protected $channel = Token::DEFAULT_CHANNEL;
109 $this->channel = $channel ?? Token::DEFAULT_CHANNEL;
133 * Constructs a new {@see CommonToken} as a copy of another {@see Token}.
140 * constructed from the result of {@see Token::getTokenSource()} and
141 * {@see Token::getInputStream()}.
H A DCommonTokenFactory.php23 * allows {@see Token::getText()} to be called at any time regardless of the
69 ) : Token {
88 public function create(int $type, string $text) : Token

12345678910>>...14