Lines Matching defs:case
29 /** @var bool case sensitive? */
30 protected $case;
33 * Sets up the lexer in case insensitive matching by default.
37 * @param boolean $case True for case sensitive.
39 public function __construct($handler, $start = "accept", $case = false)
41 $this->case = $case;
60 $this->regexes[$mode] = new ParallelRegex($this->case);
77 $this->regexes[$mode] = new ParallelRegex($this->case);
91 $this->regexes[$mode] = new ParallelRegex($this->case);
109 $this->regexes[$mode] = new ParallelRegex($this->case);