• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/

Lines Matching refs:count

201 rl_kill_word (count, key)
202 int count, key;
206 if (count < 0)
207 return (rl_backward_kill_word (-count, key));
211 rl_forward_word (count, key);
225 rl_backward_kill_word (count, ignore)
226 int count, ignore;
230 if (count < 0)
231 return (rl_kill_word (-count, ignore));
235 rl_backward_word (count, ignore);
298 rl_kill_full_line (count, ignore)
299 int count, ignore;
316 rl_unix_word_rubout (count, key)
317 int count, key;
326 if (count <= 0)
327 count = 1;
329 while (count--)
349 rl_unix_filename_rubout (count, key)
350 int count, key;
359 if (count <= 0)
360 count = 1;
362 while (count--)
393 rl_unix_line_discard (count, key)
394 int count, key;
430 rl_copy_region_to_kill (count, ignore)
431 int count, ignore;
438 rl_kill_region (count, ignore)
439 int count, ignore;
453 _rl_copy_word_as_kill (count, dir)
454 int count, dir;
462 rl_forward_word (count, 0);
464 rl_backward_word (count, 0);
469 rl_backward_word (count, 0);
471 rl_forward_word (count, 0);
482 rl_copy_forward_word (count, key)
483 int count, key;
485 if (count < 0)
486 return (rl_copy_backward_word (-count, key));
488 return (_rl_copy_word_as_kill (count, 1));
492 rl_copy_backward_word (count, key)
493 int count, key;
495 if (count < 0)
496 return (rl_copy_forward_word (-count, key));
498 return (_rl_copy_word_as_kill (count, -1));
503 rl_yank (count, ignore)
504 int count, ignore;
522 rl_yank_pop (count, key)
523 int count, key;
556 rl_yank_nth_arg_internal (count, ignore, history_skip)
557 int count, ignore, history_skip;
581 arg = history_arg_extract (count, count, entry->line);
612 rl_yank_nth_arg (count, ignore)
613 int count, ignore;
615 return (rl_yank_nth_arg_internal (count, ignore, 0));
619 how rl_yank_nth_arg treats a count of `$'. With an argument, this
622 rl_yank_last_arg (count, key)
623 int count, key;
636 count_passed = count;
643 if (count < 1)
664 rl_paste_from_clipboard (count, key)
665 int count, key;