Lines Matching full:mode
24 /** sort number used to determine priority of this mode */
33 protected $mode, $pattern;
37 // syntax mode, drop 'syntax_' from class name
38 $this->mode = substr(__CLASS__, 7);
47 public function accepts($mode) argument
49 if ($this->getConf('use_cstyle_nest') && $mode == $this->mode) return true;
50 return parent::accepts($mode);
54 public function connectTo($mode) argument
56 $this->Lexer->addEntryPattern($this->pattern[1], $mode, $this->mode);
59 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
65 $this->Lexer->addExitPattern($this->pattern[4], $this->mode);