Lines Matching refs:j
344 int i, j; in do_mb_tests() local
359 for (j = 0; j < 7; ++j) in do_mb_tests()
360 if (i & (1 << j)) in do_mb_tests()
362 if (!strchr (test->pattern, chars[j]) in do_mb_tests()
363 && !strchr (test->string, chars[j])) in do_mb_tests()
365 *p++ = chars[j]; in do_mb_tests()
367 if (j < 7) in do_mb_tests()
371 for (j = 0, p = pattern; test->pattern[j]; ++j) in do_mb_tests()
372 if (strchr (repl, test->pattern[j])) in do_mb_tests()
373 p = replace (p, test->pattern[j]); in do_mb_tests()
374 else if (test->pattern[j] == '\\' && test->pattern[j + 1]) in do_mb_tests()
376 *p++ = test->pattern[j++]; in do_mb_tests()
377 *p++ = test->pattern[j]; in do_mb_tests()
380 *p++ = test->pattern[j]; in do_mb_tests()
386 for (j = 0, p = string; test->string[j]; ++j) in do_mb_tests()
387 if (strchr (repl, test->string[j])) in do_mb_tests()
389 char *d = replace (p, test->string[j]); in do_mb_tests()
390 if (test->start > j) in do_mb_tests()
392 if (test->res > j) in do_mb_tests()
397 *p++ = test->string[j]; in do_mb_tests()