Lines Matching refs:rl_end

327   if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
389 if (rl_point >= (rl_end - 1))
425 while (count-- && rl_point < (rl_end - 1))
428 while (!whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
432 while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
466 while (count-- && rl_point < (rl_end - 1))
473 while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
476 if (rl_point && rl_point < rl_end)
479 while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
483 while (rl_point < rl_end && !whitespace (rl_line_buffer[rl_point]))
497 while (count-- && rl_point < (rl_end - 1))
502 while (_rl_isident (rl_line_buffer[rl_point]) && rl_point < rl_end)
508 !whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
513 while (whitespace (rl_line_buffer[rl_point]) && rl_point < rl_end)
562 while (count-- && rl_point < rl_end - 1)
567 while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
570 if (rl_point < rl_end)
573 while (++rl_point < rl_end && _rl_isident (rl_line_buffer[rl_point]));
575 while (++rl_point < rl_end && !_rl_isident (rl_line_buffer[rl_point])
598 if (rl_point < rl_end)
607 rl_point = rl_end;
748 while (count-- && rl_point < rl_end)
750 mbrtowc (&wc, rl_line_buffer + rl_point, rl_end - rl_point, &ps);
792 if (rl_point >= rl_end)
801 while (count-- && rl_point < rl_end)
836 if (!_rl_uppercase_p (key) && (rl_point + 1 <= rl_end))
858 if (rl_point && rl_point == rl_end)
872 if (count > rl_end)
922 rl_mark = rl_end;
935 old_end = rl_end;
936 rl_line_buffer[rl_end++] = ' ';
937 rl_line_buffer[rl_end] = '\0';
942 rl_end = old_end;
943 rl_line_buffer[rl_end] = '\0';
944 if (rl_point > rl_end)
945 rl_point = rl_end;
954 if ((_rl_to_upper (c) == 'W') && rl_point < rl_end && rl_point > rl_mark &&
975 if (rl_point >= 0 && rl_point < (rl_end - 1) && !whitespace (rl_line_buffer[rl_point]))
1064 if ((strchr (" l|h^0bB", c) == 0) && (rl_mark < rl_end))
1093 if ((strchr (" l|hwW^0bB", c) == 0) && (rl_mark < rl_end))
1142 if ((strchr (" l|h^0%bB", c) == 0) && (rl_mark < rl_end))
1194 if (rl_end == 0)
1205 if (end >= rl_end)
1206 end = rl_end;
1210 if (rl_point > 0 && rl_point == rl_end)
1221 while (rl_point < rl_end && whitespace (rl_line_buffer[rl_point]))
1369 rl_point < rl_end - 1)
1419 if (pos < rl_end)
1465 while (count-- && rl_point < rl_end)
1663 while (rl_point < rl_end && rl_line_buffer[rl_point] != ' ' &&