HomeSort by: relevance | last modified time | path
    Searched refs:rl_point (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/readline/readline/
vi_mode.c 229 _rl_replace_text (vi_insert_buffer, rl_point, rl_point+nchars-1);
264 if (rl_point > 0)
271 if (rl_point > 0)
280 if (rl_point > 0)
289 if (rl_point > 0)
298 if (rl_point > 0)
387 if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
389 if (!whitespace (rl_line_buffer[rl_point + 1])
    [all...]
kill.c 186 commands always make rl_point's original position be the FROM argument,
187 and rl_point's extent be the TO argument. */
205 orig_point = rl_point;
208 if (rl_point != orig_point)
209 rl_kill_text (orig_point, rl_point);
211 rl_point = orig_point;
213 rl_mark = rl_point;
228 orig_point = rl_point;
231 if (rl_point != orig_point)
232 rl_kill_text (orig_point, rl_point);
    [all...]
text.c 98 for (i = rl_end; i >= rl_point; i--)
101 strncpy (rl_line_buffer + rl_point, string, l);
110 (rl_undo_list->end == rl_point) &&
114 rl_add_undo (UNDO_INSERT, rl_point, rl_point + l, (char *)NULL);
116 rl_point += l;
178 _RL_FIX_POINT (rl_point);
202 rl_point = start;
243 rl_point is the place in the string where the cursor is. Sometimes
273 end = rl_point + count
    [all...]
search.c 82 current line. This doesn't do anything with rl_point; the caller
186 rl_point = 0;
206 rl_point = ind;
214 rl_point = 0;
248 rl_end = rl_point = 0;
276 rl_point = cxt->save_point;
312 if (rl_point == 0)
372 /* If rl_point == 0, we want to re-use the previous search string and
375 if (rl_point == 0)
576 if (rl_point > _rl_history_search_len
    [all...]
misc.c 61 to preserve the value of rl_point from line to line. */
360 rl_point = rl_end; /* rl_replace_line sets rl_end */
406 rl_point = (_rl_history_preserve_point && _rl_history_saved_point != -1)
409 if (rl_point > rl_end)
410 rl_point = rl_end;
414 rl_point = 0;
418 rl_mark = (rl_point == rl_end ? 0 : rl_end);
428 rl_point = rl_end;
434 rl_point = 0;
572 if (_rl_history_saved_point == -1 && (rl_point || rl_end)
    [all...]
parens.c 125 find_matching_open (rl_line_buffer, rl_point - 2, invoking_key);
135 orig_point = rl_point;
136 rl_point = match_point;
143 rl_point = orig_point;
complete.c 1064 rl_point set to the end of the word. This function skips quoted
1085 end = rl_point;
1127 rl_point = end;
1134 rl_point = scan + 1;
1146 if (rl_point == end && quote_char == '\0')
1151 while (rl_point = MB_PREVCHAR (rl_line_buffer, rl_point, MB_FIND_ANY))
1153 scan = rl_line_buffer[rl_point];
1161 (*rl_char_is_quoted_p) (rl_line_buffer, rl_point))
1171 scan = rl_line_buffer[rl_point];
    [all...]
undo.c 173 #define TRANS(i) ((i) == -1 ? rl_point : ((i) == -2 ? rl_end : (i)))
185 rl_point, and a value of -2 means rl_end. */
196 rl_point = start;
205 rl_point = start;
340 rl_point = rl_mark = 0; /* rl_end should be set correctly */
isearch.c 94 cxt->save_point = rl_point;
256 cxt->sline_index = rl_point;
300 rl_point = cxt->sline_index;
622 rl_point = cxt->save_point;
633 wstart = rl_point + cxt->search_string_index;
668 wstart = rl_point + cxt->search_string_index;
821 rl_point = cxt->sline_index;
823 rl_mark = rl_point + cxt->search_string_index;
877 not found. We use this to determine where to place rl_point. */
util.c 186 end = rl_point;
189 if (rl_point == rl_end && rl_line_buffer[rl_point] == '~')
readline.c 156 int rl_point; variable
556 rl_point == 0 && rl_end == 0)
740 rl_point = rl_end = rl_mark = 0;
1477 sp->point = rl_point;
1517 rl_point = sp->point;
  /src/external/gpl3/gdb.old/dist/readline/readline/
vi_mode.c 229 _rl_replace_text (vi_insert_buffer, rl_point, rl_point+nchars-1);
264 if (rl_point > 0)
271 if (rl_point > 0)
280 if (rl_point > 0)
289 if (rl_point > 0)
298 if (rl_point > 0)
387 if ((rl_point < rl_end) && (!whitespace (rl_line_buffer[rl_point])))
389 if (!whitespace (rl_line_buffer[rl_point + 1])
    [all...]
kill.c 186 commands always make rl_point's original position be the FROM argument,
187 and rl_point's extent be the TO argument. */
205 orig_point = rl_point;
208 if (rl_point != orig_point)
209 rl_kill_text (orig_point, rl_point);
211 rl_point = orig_point;
213 rl_mark = rl_point;
228 orig_point = rl_point;
231 if (rl_point != orig_point)
232 rl_kill_text (orig_point, rl_point);
    [all...]
text.c 98 for (i = rl_end; i >= rl_point; i--)
101 strncpy (rl_line_buffer + rl_point, string, l);
110 (rl_undo_list->end == rl_point) &&
114 rl_add_undo (UNDO_INSERT, rl_point, rl_point + l, (char *)NULL);
116 rl_point += l;
178 _RL_FIX_POINT (rl_point);
202 rl_point = start;
243 rl_point is the place in the string where the cursor is. Sometimes
273 end = rl_point + count
    [all...]
search.c 82 current line. This doesn't do anything with rl_point; the caller
186 rl_point = 0;
206 rl_point = ind;
214 rl_point = 0;
248 rl_end = rl_point = 0;
276 rl_point = cxt->save_point;
312 if (rl_point == 0)
372 /* If rl_point == 0, we want to re-use the previous search string and
375 if (rl_point == 0)
576 if (rl_point > _rl_history_search_len
    [all...]
misc.c 61 to preserve the value of rl_point from line to line. */
360 rl_point = rl_end; /* rl_replace_line sets rl_end */
406 rl_point = (_rl_history_preserve_point && _rl_history_saved_point != -1)
409 if (rl_point > rl_end)
410 rl_point = rl_end;
414 rl_point = 0;
418 rl_mark = (rl_point == rl_end ? 0 : rl_end);
428 rl_point = rl_end;
434 rl_point = 0;
572 if (_rl_history_saved_point == -1 && (rl_point || rl_end)
    [all...]
parens.c 125 find_matching_open (rl_line_buffer, rl_point - 2, invoking_key);
135 orig_point = rl_point;
136 rl_point = match_point;
143 rl_point = orig_point;
complete.c 1064 rl_point set to the end of the word. This function skips quoted
1085 end = rl_point;
1127 rl_point = end;
1134 rl_point = scan + 1;
1146 if (rl_point == end && quote_char == '\0')
1151 while (rl_point = MB_PREVCHAR (rl_line_buffer, rl_point, MB_FIND_ANY))
1153 scan = rl_line_buffer[rl_point];
1161 (*rl_char_is_quoted_p) (rl_line_buffer, rl_point))
1171 scan = rl_line_buffer[rl_point];
    [all...]
undo.c 173 #define TRANS(i) ((i) == -1 ? rl_point : ((i) == -2 ? rl_end : (i)))
185 rl_point, and a value of -2 means rl_end. */
196 rl_point = start;
205 rl_point = start;
340 rl_point = rl_mark = 0; /* rl_end should be set correctly */
isearch.c 94 cxt->save_point = rl_point;
256 cxt->sline_index = rl_point;
300 rl_point = cxt->sline_index;
622 rl_point = cxt->save_point;
633 wstart = rl_point + cxt->search_string_index;
668 wstart = rl_point + cxt->search_string_index;
821 rl_point = cxt->sline_index;
823 rl_mark = rl_point + cxt->search_string_index;
877 not found. We use this to determine where to place rl_point. */
util.c 186 end = rl_point;
189 if (rl_point == rl_end && rl_line_buffer[rl_point] == '~')
readline.c 156 int rl_point; variable
556 rl_point == 0 && rl_end == 0)
740 rl_point = rl_end = rl_mark = 0;
1477 sp->point = rl_point;
1517 rl_point = sp->point;
  /src/external/gpl3/gdb/dist/readline/readline/examples/
manexamp.c 68 start = rl_point;
110 rl_point = end - direction;
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
manexamp.c 68 start = rl_point;
110 rl_point = end - direction;
  /src/lib/libedit/readline/
readline.h 115 extern int rl_point, rl_end;

Completed in 59 milliseconds

1 2