Home
last modified time | relevance | path

Searched refs:ReadLine (Results 1 – 25 of 25) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/dist/Term-ReadLine/lib/Term/
H A DReadLine.pm205 package Term::ReadLine::Stub;
210 *rl_term_set = \@Term::ReadLine::TermCap::rl_term_set;
214 sub ReadLine {'Term::ReadLine::Stub'} subroutine
221 if not $Term::ReadLine::registered and $Term::ReadLine::toloop;
297 local $Term::ReadLine::termcap_nowarn = 1;
327 package Term::ReadLine; # So late to allow the above code be defined?
354 if (defined &Term::ReadLine::Gnu::readline) {
356 } elsif (defined &Term::ReadLine::EditLine::readline) {
358 } elsif (defined &Term::ReadLine::Perl::readline) {
366 package Term::ReadLine::TermCap;
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Term-ReadLine/t/
H A DReadLine-STDERR.t22 is( Term::ReadLine->devtty(), q{/dev/tty}, "check sub devtty" );
25 open my $tty, "<", Term::ReadLine->devtty()
29 my @out = Term::ReadLine::Stub::findConsole();
39 local *Term::ReadLine::Stub::devtty =
40 *Term::ReadLine::Stub::devtty = sub { $donotexist };
41 is( Term::ReadLine->devtty(), $donotexist, "devtty mocked" );
43 my @out = Term::ReadLine::Stub::findConsole();
47 my $tr = Term::ReadLine->new('whatever');
H A DReadLine.t4 package Term::ReadLine::Mock;
6 sub ReadLine {'Term::ReadLine::Mock'};
19 my $t = new Term::ReadLine 'test term::readline';
25 for my $method (qw( ReadLine readline addhistory IN OUT MinLine
30 is($t->ReadLine, 'Term::ReadLine::Mock', "\$object->ReadLine");
H A DTk.t23 require Term::ReadLine;
27 my $t = Term::ReadLine->new('Tk');
29 is($t->ReadLine, 'Term::ReadLine::Stub', 'Correct type');
H A DAE.t17 require Term::ReadLine;
20 my $t = Term::ReadLine->new('AE');
22 is($t->ReadLine, 'Term::ReadLine::Stub', 'Correct type');
H A DAETk.t26 require Term::ReadLine;
29 my $t = Term::ReadLine->new('AE/Tk');
31 is($t->ReadLine, 'Term::ReadLine::Stub', 'Correct type');
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/example/
H A Dtest.pl262 $t = ReadLine 0, IN;
276 $t = ReadLine 0, IN;
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/
H A DCPAN.pm271 require Term::ReadLine;
274 $term->ReadLine eq "Term::ReadLine::Stub"
276 $term = Term::ReadLine->new('CPAN Monitor');
278 if ($term->ReadLine eq "Term::ReadLine::Gnu") {
298 local $Term::ReadLine::termcap_nowarn = 1;
315 $try_detect_readline = $term->ReadLine eq "Term::ReadLine::Stub" if $term;
318 ($term->ReadLine ne "Term::ReadLine::Stub") ? "enabled" :
446 require Term::ReadLine;
458 local $Term::ReadLine::termcap_nowarn = 1;
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A DREADME57 or distribution. There are some limitations, with the ReadLine call
64 VERY IMPORTANT: In 2.00, the ReadKey/ReadLine arguments changed. Now, if
104 Non-blocking support is provided via the ReadKey and ReadLine functions. If
112 Note that a non-blocking ReadLine probably won't do what you expect,
/openbsd-src/gnu/usr.bin/perl/lib/
H A Dperl5db.pl226 =item * ReadLine
228 if false, a dummy ReadLine is used, so you can debug
229 ReadLine applications.
953 ReadLine NonStop LineInfo
1013 ReadLine => \&ReadLine,
1524 #require Term::ReadLine;
3339 Manages the commands in C<@hist> (which is created if C<Term::ReadLine> reports
6832 In either case, we set up the terminal next. If the C<ReadLine> option was
6833 true, we'll get a C<Term::ReadLine> objec
7834 sub ReadLine { global() subroutine
[all...]
H A Dperl5db.t31 $ENV{PERL_RL} = 'Perl'; # Suppress system Term::ReadLine::Gnu
75 &parse_options("NonStop=0 ReadLine=0 TTY=db.out");
93 local $ENV{PERLDB_OPTS} = "ReadLine=0 NonStop=1";
509 local $ENV{PERLDB_OPTS} = "ReadLine=0";
539 local $ENV{PERLDB_OPTS} = "ReadLine=0" . $extra_opts;
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperldebug.pod718 Run Tk while prompting (with ReadLine).
770 Affects screen appearance of the command line (see L<Term::ReadLine>).
865 L<Term::ReadLine> backend) will be read on the debugger's startup, and to which
879 initialization options C<TTY>, C<noTTY>, C<ReadLine>, and C<NonStop>
914 =item C<ReadLine>
915 X<debugger option, ReadLine>
918 to debug applications that themselves use ReadLine.
954 which may be useful for debugging a program that uses L<Term::ReadLine>
1148 the L<Term::ReadKey> and one of the C<Term::ReadLine::*> modules from CPAN (such as
1149 L<Term::ReadLine
[all...]
H A Dperl5262delta.pod64 L<Term::ReadLine> has been upgraded from version 1.16 to 1.17.
H A Dperl5121delta.pod170 F<perl5db.t>: Fix for test failures when C<Term::ReadLine::Gnu> is installed.
H A Dperl588delta.pod1076 C<Term::ReadLine> upgraded to version 1.02
H A Dperl5101delta.pod785 =item C<Term::ReadLine>
H A Dperl589delta.pod896 C<Term::ReadLine> upgraded to version 1.03
H A Dperl5160delta.pod1435 L<Term::ReadLine> has been upgraded from version 1.07 to 1.09.
1437 Term::ReadLine now supports any event loop, including unpublished ones and
H A Dperl5280delta.pod1028 L<Term::ReadLine> has been upgraded from version 1.16 to 1.17.
H A Dperl5260delta.pod1061 L<Term::ReadLine> has been upgraded from version 1.15 to 1.16.
H A Dperl5200delta.pod1083 L<Term::ReadLine> has been upgraded from version 1.12 to 1.14.
H A Dperl5180delta.pod1550 L<Term::ReadLine> has been upgraded to 1.10. This fixes the
/openbsd-src/gnu/usr.bin/perl/t/porting/
H A Dknown_pod_issues.dat353 Term::ReadLine::Gnu
354 Term::ReadLine::Perl
/openbsd-src/regress/usr.bin/make/
H A Dmk16207 Term::ReadLine 3p lib/Term/ReadLine.pm \
/openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/
H A Dperlfaq8.pod49 Term::ReadLine::Gnu CPAN
50 Term::ReadLine::Perl CPAN
270 my $password = ReadLine(0);