Home
last modified time | relevance | path

Searched refs:Lexer (Results 201 – 225 of 1044) sorted by path

12345678910>>...42

/plugin/combo/syntax/
H A Dtoggleexpand.php81 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
90 $this->Lexer->addExitPattern('</' . self::getTag() . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
H A Dtooltip.php114 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
121 $this->Lexer->addExitPattern('</' . self::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dunit.php88 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
95 $this->Lexer->addExitPattern('</' . self::TAG . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
H A Dvariable.php94 $this->Lexer->addSpecialPattern(Template::CAPTURE_PATTERN_SHORT, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
95 $this->Lexer->addSpecialPattern(Template::CAPTURE_PATTERN_LONG, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dwebcode.php118 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
126 $this->Lexer->addExitPattern('</' . WebCodeTag::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlblockemptytag.php66 $this->Lexer->addSpecialPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlblocktag.php131 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
138 $this->Lexer->addExitPattern('</[\w-]+>', PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlinlineemptytag.php59 $this->Lexer->addSpecialPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlinlinetag.php125 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
135 $this->Lexer->addExitPattern('</' . $tag . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
H A Dxmlprotectedtag.php94 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
104 $this->Lexer->addExitPattern('</' . $tag . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
12 * match of a lexer rule. Lexer actions are used for both embedded action syntax
43 * Execute the lexer action in the context of the specified {@see Lexer}.
48 * @param Lexer $lexer The lexer instance.
50 public function execute(Lexer $lexer) : void;
H A DLexerChannelAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `channel` lexer action by calling {@see Lexer::setChannel()}
24 * @param int $channel The channel value to pass to {@see Lexer::setChannel()}.
64 * This action is implemented by calling {@see Lexer::setChannel()} with the
67 public function execute(Lexer $lexer) : void
H A DLexerCustomAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
82 * {@see Lexer::getText()}.
94 * Custom actions are implemented by calling {@see Lexer::action()} with the
97 public function execute(Lexer $lexer) : void
H A DLexerIndexedCustomAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
101 public function execute(Lexer $lexer) : void
H A DLexerModeAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
18 * @param int $mode The mode value to pass to {@see Lexer::mode()}.
58 * This action is implemented by calling {@see Lexer::mode()} with the
61 public function execute(Lexer $lexer) : void
H A DLexerMoreAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `more` lexer action by calling {@see Lexer::more()}.
53 * This action is implemented by calling {@see Lexer::more()}.
55 public function execute(Lexer $lexer) : void
H A DLexerPopModeAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `popMode` lexer action by calling {@see Lexer::popMode()}.
53 * This action is implemented by calling {@see Lexer::popMode()}.
55 public function execute(Lexer $lexer) : void
H A DLexerPushModeAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `pushMode` lexer action by calling {@see Lexer::pushMode()}
59 * This action is implemented by calling {@see Lexer::pushMode()} with the
62 public function execute(Lexer $lexer) : void
H A DLexerSkipAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `skip` lexer action by calling {@see Lexer::skip()}.
53 * This action is implemented by calling {@see Lexer::skip()}.
55 public function execute(Lexer $lexer) : void
H A DLexerTypeAction.php8 use Antlr\Antlr4\Runtime\Lexer; alias
11 * Implements the `type` lexer action by calling {@see Lexer::setType()}
24 * @param int $type The type to assign to the token using {@see Lexer::setType()}.
64 * This action is implemented by calling {@see Lexer::setType()} with the
67 public function execute(Lexer $lexer) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php18 use Antlr\Antlr4\Runtime\Lexer; alias
37 /** @var Lexer|null */
68 protected $mode = Lexer::DEFAULT_MODE;
81 ?Lexer $recog,
155 $this->mode = Lexer::DEFAULT_MODE;
441 if ($trans->matches($t, Lexer::MIN_CHAR_VALUE, Lexer::MAX_CHAR_VALUE)) {
657 if ($t->matches(Token::EOF, 0, Lexer::MAX_CHAR_VALUE)) {
678 * {@see Lexer::getText()}, {@see Lexer
[all...]
H A DLexerActionExecutor.php13 use Antlr\Antlr4\Runtime\Lexer; alias
144 * particular {@see Lexer}.
152 * @param Lexer $lexer The lexer instance.
164 public function execute(Lexer $lexer, CharStream $input, int $startIndex) : void
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DBufferedTokenStream.php384 $nextOnChannel = $this->nextTokenOnChannel($tokenIndex + 1, Lexer::DEFAULT_TOKEN_CHANNEL);
407 $prevOnChannel = $this->previousTokenOnChannel($tokenIndex - 1, Lexer::DEFAULT_TOKEN_CHANNEL);
430 if ($t->getChannel() !== Lexer::DEFAULT_TOKEN_CHANNEL) {
H A DLexer.php14 * lexer grammars result in a subclass of this object. A Lexer object
18 abstract class Lexer extends Recognizer implements TokenSource class
105 * input char buffer. Use {@see Lexer::setText()} or can set this instance var.
128 // wack Lexer state variables
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/
H A DLexerNoViableAltException.php9 use Antlr\Antlr4\Runtime\Lexer; alias
28 public function __construct(Lexer $lexer, CharStream $input, int $startIndex, ATNConfigSet $deadEndConfigs)

12345678910>>...42