Home
last modified time | relevance | path

Searched refs:Token (Results 51 – 75 of 327) sorted by relevance

12345678910>>...14

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DRecognitionException.php12 use Antlr\Antlr4\Runtime\Token; alias
37 * The current {@see Token} when an error occurred. Since not all streams
38 * support accessing symbols by index, we have to track the {@see Token}
41 * @var Token|null
139 public function getOffendingToken() : ?Token
144 public function setOffendingToken(?Token $offendingToken) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php159 * {@see Parser::createErrorNode(ParserRuleContext, Token)} then
164 * @return Token the matched symbol
171 public function match(int $ttype) : Token
176 if ($ttype === Token::EOF) {
206 * {@see Parser::createErrorNode(ParserRuleContext, Token)}. then
209 * @return Token The matched symbol.
215 public function matchWildcard() : ?Token
463 public function getCurrentToken() : ?Token
468 private function token() : Token
481 ?Token
[all...]
H A DLL1Analyzer.php27 public const HIT_PRED = Token::INVALID_TYPE;
89 * `s` is reached, {@see Token::EPSILON} is added to the result set.
91 * reached, {@see Token::EOF} is added to the result set.
131 * rule containing `s` is reached, {@see Token::EPSILON} is added to
134 * reached, {@see Token::EOF} is added to the result set.
167 * @param bool $addEOF Add {@see Token::EOF} to
192 $look->addOne(Token::EPSILON);
198 $look->addOne(Token::EOF);
206 $look->addOne(Token::EPSILON);
212 $look->addOne(Token
[all...]
H A DTokenFactory.php30 ) : Token;
35 public function create(int $type, string $text) : Token;
H A DToken.php12 interface Token interface
42 * The non-negative numbers less than {@see Token::MIN_USER_CHANNEL_VALUE}
43 * are assigned to the predefined channels {@see Token::DEFAULT_CHANNEL} and
44 * {@see Token::HIDDEN_CHANNEL}.
46 * @see Token::getChannel()
H A DParserRuleContext.php50 /** @var Token|null */
53 /** @var Token|null */
271 public function getStart() : ?Token
283 public function getStop() : ?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/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/
H A DArgumentsWildcard.php22 * @var Token\TokenInterface[]
35 if (!$argument instanceof Token\TokenInterface) {
36 $argument = new Token\ExactValueToken($argument);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudNaturalLanguage/
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/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DToken.php3 use Twig\Token; alias
8 class Twig_Token extends Token
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Token/
H A DStdOAuth2Token.php3 namespace OAuth\OAuth2\Token;
5 use OAuth\Common\Token\AbstractToken;
H A DTokenInterface.php3 namespace OAuth\OAuth2\Token;
5 use OAuth\Common\Token\TokenInterface as BaseTokenInterface;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Token/
H A DStdOAuth2Token.php3 namespace OAuth\OAuth2\Token;
5 use OAuth\Common\Token\AbstractToken;
9 * Implements OAuth\OAuth2\Token\TokenInterface for any functionality that might not be provided by AbstractToken.
H A DTokenInterface.php3 namespace OAuth\OAuth2\Token;
5 use OAuth\Common\Token\TokenInterface as BaseTokenInterface;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTerminalNode.php7 use Antlr\Antlr4\Runtime\Token; alias
11 public function getSymbol() : Token;
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DTokenParserInterface.php16 use Twig\Token; alias
37 public function parse(Token $token);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Token/
H A DTokenInterface.php3 namespace OAuth\OAuth1\Token;
5 use OAuth\Common\Token\TokenInterface as BaseTokenInterface;
H A DStdOAuth1Token.php3 namespace OAuth\OAuth1\Token;
5 use OAuth\Common\Token\AbstractToken;
9 * Implements OAuth\OAuth1\Token\TokenInterface in case of any OAuth1 specific features.
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DTokenException.php27 * @var PhpCss\Scanner\Token
31 public function __construct(PhpCss\Scanner\Token $token, string $message) {
39 * @return PhpCss\Scanner\Token
41 public function getToken(): PhpCss\Scanner\Token {
H A DTokenMismatchException.php19 * @param PhpCss\Scanner\Token $encounteredToken
22 public function __construct(PhpCss\Scanner\Token $encounteredToken, array $expectedTokens) {
27 $expectedTokenStrings[] = PhpCss\Scanner\Token::typeToString($expectedToken);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DServerAuthorization.php21 use FreeDSx\Ldap\Server\Token\AnonToken;
22 use FreeDSx\Ldap\Server\Token\BindToken;
23 use FreeDSx\Ldap\Server\Token\TokenInterface;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DSampler.php140 $token = new Compiler\Llk\Rule\Token(
164 protected function completeToken(Compiler\Llk\Rule\Token $token)
218 protected function generateToken(Compiler\Llk\Rule\Token $token)
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerAnonBindHandler.php21 use FreeDSx\Ldap\Server\Token\AnonToken;
22 use FreeDSx\Ldap\Server\Token\TokenInterface;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DANTLRErrorStrategy.php9 use Antlr\Antlr4\Runtime\Token; alias
39 * returns the {@see Token} instance which should be treated as the
54 public function recoverInline(Parser $recognizer) : Token;

12345678910>>...14