Home
last modified time | relevance | path

Searched refs:Lexer (Results 151 – 175 of 1044) sorted by relevance

12345678910>>...42

/plugin/confightmlok/syntax/
H A Dhtmlblock.php14 $this->Lexer->addEntryPattern('<HTML>(?=.*</HTML>)', $mode, 'plugin_confightmlok_htmlblock');
18 $this->Lexer->addExitPattern('</HTML>', 'plugin_confightmlok_htmlblock');
/plugin/mediasyntax/syntax/
H A Dlink.php17 $this->Lexer->addEntryPattern(
26 $this->Lexer->addExitPattern(
/plugin/markdowku/
H A Dboldasterisk.php18 $this->Lexer->addEntryPattern(
25 $this->Lexer->addExitPattern(
H A Ditalicasterisk.php23 $this->Lexer->addEntryPattern(
30 $this->Lexer->addExitPattern(
H A Ditalicunderline.php23 $this->Lexer->addEntryPattern(
34 $this->Lexer->addExitPattern(
/plugin/imagecarousel/
H A Dsyntax.php43 $this->Lexer->addEntryPattern('<carousel.*?>',$mode,'plugin_imagecarousel');
48 $this->Lexer->addPattern('\n {2,}[\*]','plugin_imagecarousel');
50 $this->Lexer->addExitPattern('</carousel>','plugin_imagecarousel');
/plugin/heat/
H A Dsyntax.php116 $this->Lexer->addSpecialPattern('Heat #',$mode,'plugin_heat');
117 $this->Lexer->addSpecialPattern('heat #',$mode,'plugin_heat');
/plugin/workflow/syntax/
H A Dbox.php20 $this->Lexer->addEntryPattern('<box.*?>(?=.*?</box>)', $mode, 'plugin_workflow_box');
24 $this->Lexer->addExitPattern('</box>', 'plugin_workflow_box');
/plugin/command/syntax/
H A Dblock.php57 $this->Lexer->addSpecialPattern(
60 $this->Lexer->addSpecialPattern(
/plugin/wavedrom/
H A Dsyntax.php35 $this->Lexer->addEntryPattern('<wavedrom>(?=.*?</wavedrom>)',$mode,'plugin_wavedrom');
38 $this->Lexer->addExitPattern('</wavedrom>','plugin_wavedrom');
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
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 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
/plugin/callflow/
H A Dsyntax.php15 …function connectTo($mode){$this->Lexer->addEntryPattern('<callflow>(?=.*?</callflow>)',$mode,'plug…
17 function postConnect() { $this->Lexer->addExitPattern('</callflow>','plugin_callflow'); }
/plugin/plaintext/
H A Dblock.php24 $this->Lexer->addEntryPattern('<TEXT>(?=.*?</TEXT>)',$mode,'plugin_plaintext_block');
28 $this->Lexer->addExitPattern('</TEXT>','plugin_plaintext_block');
/plugin/textrotate/
H A Dsyntax.php20 $this->Lexer->addEntryPattern(
28 $this->Lexer->addExitPattern(
/plugin/extlist/
H A Dsyntax.php84 $this->Lexer->addEntryPattern('[ \t]*'.$this->entry_pattern, $mode, $this->mode);
87 $this->Lexer->addSpecialPattern('[ \t]*'.$this->macro_pattern, $mode, $this->mode);
88 $this->Lexer->addPattern($this->macro_pattern, $this->mode);
94 $this->Lexer->addPattern($this->match_pattern, $this->mode);
95 $this->Lexer->addPattern(' ::? ', $this->mode); // dt and dd in one line
98 $this->Lexer->addPattern($this->extra_pattern, $this->mode);
101 $this->Lexer->addExitPattern($this->exit_pattern, $this->mode);
/plugin/randompage2/
H A Dsyntax.php19 …public function connectTo($mode) { $this->Lexer->addEntryPattern('<randompage_link>(?=.*?</randomp…
20 …public function postConnect() { $this->Lexer->addExitPattern('</randompage_link>','plugin_randompa…
/plugin/phpwikify/
H A Dsyntax.php25 …function connectTo( $mode ) { $this->Lexer->addEntryPattern("<phpwikify>(?=.*?</phpwikify>)…
26 …function postConnect() { $this->Lexer->addExitPattern( "</phpwikify>","plugin_phpwikif…
/plugin/subnumberlist/
H A Dsyntax.php15 …$this->Lexer->addEntryPattern('<subnumberlist>(?=.*?</subnumberlist>)',$mode,'plugin_subnumberlist…
18 $this->Lexer->addExitPattern('</subnumberlist>','plugin_subnumberlist');
/plugin/linkpagechild/
H A Dsyntax.php48 $this->Lexer->addSpecialPattern('\[\[ ?::[^\]]+\]\]', $mode, 'plugin_linkpagechild');
49 $this->Lexer->addSpecialPattern('\{\{ ?::[^\}]+\}\}', $mode, 'plugin_linkpagechild');
/plugin/struct/syntax/
H A Dglobal.php25 $this->Lexer->addSpecialPattern('----+ *struct global *-+\n.*?\n----+', $mode, 'plugin_struct_global');
28 $this->Lexer->addSpecialPattern('----+ *struct lookup *-+\n.*?\n----+', $mode, 'plugin_struct_global');
/plugin/webcomponent/syntax/
H A Dbutton.php98 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
108 …$this->Lexer->addExitPattern('</' . $tag . '>', 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $thi…
112 …$this->Lexer->addPattern(self::INTERNAL_LINK_PATTERN, 'plugin_' . webcomponent::PLUGIN_NAME . '_' …
/plugin/glossary/syntax/
H A Dspan.php32 $this->Lexer->addSpecialPattern ('<glossary[^/]*?/>', $mode, 'plugin_glossary_span');
33 …$this->Lexer->addEntryPattern ('<glossary[^/]*?>(?=.*?</glossary>)', $mode, 'plugin_glossary_span'…
36 $this->Lexer->addExitPattern ('</glossary>', 'plugin_glossary_span');
/plugin/htmlsafe/
H A Dsyntax.php23 $this->Lexer->addSpecialPattern('<html>.*?</html>', $mode, 'plugin_htmlsafe');
24 $this->Lexer->addSpecialPattern('<HTML>.*?</HTML>', $mode, 'plugin_htmlsafe');

12345678910>>...42