Lines Matching refs:j
380 int j = i - 1; in php_unicode_convert_case() local
381 while (j >= 0 && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case()
382 j--; in php_unicode_convert_case()
384 … if (j >= 0 ? php_unicode_is_cased(wchar_buf[j]) : scan_back_for_cased_letter(p, converted_end)) { in php_unicode_convert_case()
386 j = i + 1; in php_unicode_convert_case()
387 while (j < out_len && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case()
388 j++; in php_unicode_convert_case()
392 …if (j >= out_len ? !scan_ahead_for_cased_letter(in, in_len, state, src_encoding) : !php_unicode_is… in php_unicode_convert_case()
433 int j = i - 1; in php_unicode_convert_case() local
434 while (j >= 0 && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case()
435 j--; in php_unicode_convert_case()
437 … if (j >= 0 ? php_unicode_is_cased(wchar_buf[j]) : scan_back_for_cased_letter(p, converted_end)) { in php_unicode_convert_case()
438 j = i + 1; in php_unicode_convert_case()
439 while (j < out_len && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case()
440 j++; in php_unicode_convert_case()
442 …if (j >= out_len ? !scan_ahead_for_cased_letter(in, in_len, state, src_encoding) : !php_unicode_is… in php_unicode_convert_case()