Home
last modified time | relevance | path

Searched refs:tokenType (Results 1 – 18 of 18) sorted by last modified time

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DVocabulary.php37 * @param int $tokenType The token type.
42 public function getLiteralName(int $tokenType) : ?string; argument
64 * @param int $tokenType The token type.
69 public function getSymbolicName(int $tokenType) : ?string; argument
79 * @param int $tokenType The token type.
85 public function getDisplayName(int $tokenType) : string; argument
H A DVocabularyImpl.php130 public function getLiteralName(int $tokenType) : ?string argument
132 if ($tokenType >= 0 && $tokenType < \count($this->literalNames)) {
133 return $this->literalNames[$tokenType];
139 public function getSymbolicName(int $tokenType) : ?string argument
141 if ($tokenType >= 0 && $tokenType < \count($this->symbolicNames)) {
142 return $this->symbolicNames[$tokenType];
145 if ($tokenType === Token::EOF) {
152 public function getDisplayName(int $tokenType) argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php327 $tokenType = $this->readInt();
329 if ($tokenType === 0xFFFF) {
330 $tokenType = Token::EOF;
333 $atn->ruleToTokenType[$i] = $tokenType;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessVerifications/
H A DGenerateVerificationTokenResponse.php22 protected $tokenType = VerificationToken::class; variable in Google\\Service\\MyBusinessVerifications\\GenerateVerificationTokenResponse
H A DVerifyLocationRequest.php44 protected $tokenType = VerificationToken::class; variable in Google\\Service\\MyBusinessVerifications\\VerifyLocationRequest
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSecurityToken/
H A DGoogleIdentityStsV1ExchangeTokenResponse.php43 public $tokenType; variable in Google\\Service\\CloudSecurityToken\\GoogleIdentityStsV1ExchangeTokenResponse
90 public function setTokenType($tokenType) argument
92 $this->tokenType = $tokenType;
99 return $this->tokenType;
/plugin/a2s/
H A DASCIIToSVG.php586 function A2S_SVGPathTokenName(/* int */ $tokenType){ argument
587 if (isset(self::$yyTokenName[$tokenType]))
588 return self::$yyTokenName[$tokenType];
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dgson-2.7.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1tokenType) {\n let m = tokenType.match(STANDARD_TOKEN_TYPE_REGEXP);\n if (!m) {\n ret…
H A D2.2.js28447 var tokenType = this._string(content);
28448 if (tokenType !== null) {
28449 return this.finishToken(offset, tokenType, content.join(''));
28452 tokenType = staticTokenTable[this.stream.peekChar()];
28453 if (typeof tokenType !== 'undefined') {
28455 return this.finishToken(offset, tokenType);
29875 var tokenType = this.escapedJavaScript();
29876 if (tokenType !== null) {
29877 return this.finishToken(offset, tokenType);
H A D3.3.js.map1tokenType = TokenType.Unknown;\n var tokenError;\n var hasSpaceAfterTag;\n var lastTag;\n…
H A D2.2.js.map1tokenType = this._string(content);\n if (tokenType !== null) {\n return this.fin…
H A Dbundle.js396tokenType):"-?-"}`)),Object(i.a)("tr",void 0,Object(i.a)("td.tm-metadata-key",void 0,"font style")…
/plugin/dirtylittlehelper/mermaid/editor/
H A Dbundle.js396tokenType):"-?-"}`)),Object(i.a)("tr",void 0,Object(i.a)("td.tm-metadata-key",void 0,"font style")…
/plugin/codemirror/dist/modes/
H A Dmarkdown.min.js.map1tokenType","hasOwnProperty","hrRE","listRE","taskListRE","atxHeaderRE","allowAtxHeaderWithoutSpace…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/
H A DPHP.php727 $tokenType = $tokens[$i][0];
729 $tokenType = $tokens[$i];
732 if ($tokenType === T_FUNCTION) {
736 …} else if (in_array($tokenType, array(T_OPEN_TAG, T_OPEN_TAG_WITH_ECHO, '=', '{', ';')) === true) {
1467 $tokenType = $tokens[$i]['type'];
1471 …echo "\t* token $i ($tokenType) on line $line opener changed from $scopeOpener ($oldType) to $x ($…
1475 …echo "\t* token $i ($tokenType) on line $line closer changed from $scopeCloser ($oldType) to $newC…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DFile.php1924 $tokenType = $tokens[$i]['code'];
1965 && $tokenType === T_CLOSE_CURLY_BRACKET
1993 && $tokenType !== T_CLOSE_CURLY_BRACKET
2019 && ($tokenType === T_ELSE || $tokenType === T_ELSEIF)
2094 if (isset($tokenizer->scopeOpeners[$tokenType]) === true) {
2096 if ($tokenType === T_USE) {
2103 if ($tokenType === T_FUNCTION
2186 } else if ($currType === $tokenType
2253 if ($tokenType === T_OPEN_CURLY_BRACKET) {
2308 } else if ($tokenType === T_OPEN_PARENTHESIS) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/
H A DAbstractPatternSniff.php113 $tokenType = $parsedPattern[$pos]['token'];
114 $listenTypes[] = $tokenType;
122 if (isset($this->_parsedPatterns[$tokenType]) === false) {
123 $this->_parsedPatterns[$tokenType] = array();
126 $this->_parsedPatterns[$tokenType][] = $patternArray;