Lines Matching defs:i
35 for ($i = 0; $i < $len; $i++) {
36 $b = ord($str[$i]);
46 if ((++$i === $len) || ((ord($str[$i]) & 0xC0) !== 0x80))
67 for ($i = 0; $i < $len; $i++) {
68 if (ord($str[$i]) < 128) {
69 $ascii .= $str[$i];
183 * @param int $i byte index into $str
187 public static function correctIdx($str, $i, $next = false)
190 if ($i <= 0) return 0;
193 if ($i >= $limit) return $limit;
196 while (($i < $limit) && ((ord($str[$i]) & 0xC0) === 0x80)) $i++;
198 while ($i && ((ord($str[$i]) & 0xC0) === 0x80)) $i--;
201 return $i;