Lines Matching refs:lead
28 private $lead;
37 $this->lead = 0x00;
44 if ($this->lead !== 0x00) {
45 $this->lead = 0x00;
55 if ($this->lead === 0x8E && ($byte >= 0xA1 && $byte <= 0xDF)) {
56 $this->lead = 0x00;
61 if ($this->lead === 0x8F && ($byte >= 0xA1 && $byte <= 0xFE)) {
63 $this->lead = $byte;
68 if ($this->lead !== 0x00) {
69 $lead = $this->lead;
70 $this->lead = 0x00;
73 if (($lead >= 0xA1 && $lead <= 0xFE) && ($byte >= 0xA1 && $byte <= 0xFE)) {
80 $codePoint = $index[($lead - 0xA1) * 94 + $byte - 0xA1] ?? null;
101 $this->lead = $byte;