Searched refs:rl_point (Results 1 - 19 of 19) sorted by relevance

/freebsd-9.3-release/contrib/libreadline/
H A Dvi_mode.c212 if (rl_point > 0)
221 if (rl_point > 0)
327 if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
329 if (!whitespace (rl_line_buffer[rl_point + 1]))
331 rl_point++;
367 if (rl_point == 0)
389 if (rl_point >= (rl_end - 1))
425 while (count-- && rl_point < (rl_end - 1))
428 while (!whitespace (rl_line_buffer[rl_point])
[all...]
H A Dkill.c190 commands always make rl_point's original position be the FROM argument,
191 and rl_point's extent be the TO argument. */
210 orig_point = rl_point;
213 if (rl_point != orig_point)
214 rl_kill_text (orig_point, rl_point);
216 rl_point = orig_point;
218 rl_mark = rl_point;
234 orig_point = rl_point;
237 if (rl_point != orig_point)
238 rl_kill_text (orig_point, rl_point);
[all...]
H A Dtext.c92 for (i = rl_end; i >= rl_point; i--)
94 strncpy (rl_line_buffer + rl_point, string, l);
103 (rl_undo_list->end == rl_point) &&
107 rl_add_undo (UNDO_INSERT, rl_point, rl_point + l, (char *)NULL);
109 rl_point += l;
172 _RL_FIX_POINT (rl_point);
190 rl_point = start;
232 rl_point is the place in the string where the cursor is. Sometimes
261 int end = rl_point
[all...]
H A Dmisc.c63 to preserve the value of rl_point from line to line. */
364 rl_point = rl_end; /* rl_replace_line sets rl_end */
400 rl_point = (_rl_history_preserve_point && _rl_history_saved_point != -1)
403 if (rl_point > rl_end)
404 rl_point = rl_end;
408 rl_point = 0;
412 rl_mark = (rl_point == rl_end ? 0 : rl_end);
424 rl_point = rl_end;
430 rl_point = 0;
477 if (_rl_history_saved_point == -1 && (rl_point || rl_en
[all...]
H A Dsearch.c86 current line. This doesn't do anything with rl_point; the caller
164 rl_point = 0;
181 rl_point = 0;
211 rl_end = rl_point = 0;
243 rl_point = cxt->save_point;
274 if (rl_point == 0)
312 /* If rl_point == 0, we want to re-use the previous search string and
315 if (rl_point == 0)
493 if (rl_point > rl_history_search_len)
495 rl_point
[all...]
H A Dparens.c125 find_matching_open (rl_line_buffer, rl_point - 2, invoking_key);
136 orig_point = rl_point;
137 rl_point = match_point;
140 rl_point = orig_point;
H A Dundo.c169 #define TRANS(i) ((i) == -1 ? rl_point : ((i) == -2 ? rl_end : (i)))
181 rl_point, and a value of -2 means rl_end. */
192 rl_point = start;
200 rl_point = start;
302 rl_point = rl_mark = 0; /* rl_end should be set correctly */
H A Dcomplete.c800 rl_point set to the end of the word. This function skips quoted
821 end = rl_point;
863 rl_point = end;
870 rl_point = scan + 1;
882 if (rl_point == end && quote_char == '\0')
887 while (rl_point = MB_PREVCHAR (rl_line_buffer, rl_point, MB_FIND_ANY))
889 scan = rl_line_buffer[rl_point];
897 (*rl_char_is_quoted_p) (rl_line_buffer, rl_point))
907 scan = rl_line_buffer[rl_point];
[all...]
H A Disearch.c98 cxt->save_point = rl_point;
253 cxt->sline_index = rl_point;
292 rl_point = cxt->sline_index;
451 rl_point = cxt->save_point;
460 wstart = rl_point + cxt->search_string_index;
495 wstart = rl_point + cxt->search_string_index;
595 rl_point = cxt->sline_index;
652 not found. We use this to determine where to place rl_point. */
H A Dutil.c182 end = rl_point;
185 if (rl_point == rl_end && rl_line_buffer[rl_point] == '~')
H A Dreadline.c151 int rl_point; variable
439 rl_point == 0 && rl_end == 0)
566 rl_point = rl_end = rl_mark = 0;
1160 sp->point = rl_point;
1194 rl_point = sp->point;
H A Dreadline.h501 extern int rl_point;
H A Ddisplay.c741 if (in == rl_point)
835 if (in == rl_point)
/freebsd-9.3-release/contrib/libreadline/examples/
H A Dmanexamp.c69 start = rl_point;
111 rl_point = end - direction;
/freebsd-9.3-release/lib/libedit/edit/readline/
H A Dreadline.h107 extern int rl_point, rl_end;
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dcompleter.c104 return line_completion_function (text, matches, rl_line_buffer, rl_point);
/freebsd-9.3-release/contrib/gdb/gdb/tui/
H A Dtui-io.c236 if (in == rl_point)
/freebsd-9.3-release/contrib/libreadline/examples/rlfe/
H A Drlfe.c238 if (ch == eof_char && rl_point == rl_end)
/freebsd-9.3-release/lib/libedit/
H A Dreadline.c78 int rl_point = 0; variable
348 * Unfortunately, some applications really do use rl_point
1772 &rl_point, &rl_end, NULL, NULL, NULL);
2078 rl_point = (int)(li->cursor - li->buffer);

Completed in 136 milliseconds