Lines Matching refs:pattern
42 protected $mode, $pattern; variable in syntax_plugin_inlinejs_preloader
50 $this->pattern[1] = '<PRELOAD\b[^\n\r]*?>(?=.*?</PRELOAD>)';
51 $this->pattern[21] = '<link [^\n\r]*?>';
52 $this->pattern[22] = '<style>.*?</style>';
53 $this->pattern[23] = '<script\b[^\n\r]*?>.*?</script>';
54 $this->pattern[4] = '</PRELOAD>';
59 $this->Lexer->addEntryPattern($this->pattern[1], $mode, $this->mode);
64 $this->Lexer->addExitPattern($this->pattern[4], $this->mode);
65 $this->Lexer->addPattern($this->pattern[21], $this->mode);
66 $this->Lexer->addPattern($this->pattern[22], $this->mode);
67 $this->Lexer->addPattern($this->pattern[23], $this->mode);