Searched refs:perl (Results 26 - 50 of 257) sorted by relevance

1234567891011

/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Perl/
H A Dpl_malloc.d44 perl$target:::sub-entry
50 perl$target:::sub-return
H A Dpl_calldist.d49 perl*:::sub-entry
56 perl*:::sub-return
H A Dpl_cpudist.d49 perl*:::sub-entry
56 perl*:::sub-return
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dless.pm7 less - perl pragma to request less of something from the compiler
H A DFindBin.pm9 FindBin - Locate directory of original perl script
31 If perl is invoked using the B<-e> option or the perl script is read from
38 $Script - basename of script from which perl was invoked
64 If perl is invoked as
66 perl filename
72 Workaround is to invoke perl as
74 perl ./filename
78 FindBin is supported as part of the core perl distribution. Please send bug
79 reports to E<lt>F<perlbug@perl
[all...]
H A Dbignum.pm216 perl -Mbignum -le 'print ref(1234)'
222 perl -Mbignum -le 'print ref(2**255)'
231 perl -Mbignum -le 'print ref(1234+1234)'
236 perl -Mbignum -le '$x = 1234; print $x->bdec()'
237 perl -Mbignum -le 'print 1234->binc();'
238 perl -Mbignum -le 'print 1234->binc->badd(6);'
239 perl -Mbignum -le 'print +(1234)->binc()'
246 perl -Mbignum -le 'print 1234->binc->badd(6);'
252 perl -Mbignum -le 'print 1234+4.5'
262 perl
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/t/
H A Dio_pipe.t1 #!./perl
30 my $perl = './perl';
35 $pipe = new IO::Pipe->reader($perl, '-e', 'print "not ok 1\n"');
44 $pipe = new IO::Pipe->writer($perl, '-pe', $cmd);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DCommand.pm24 perl -MExtUtils::Command -e cat files... > destination
25 perl -MExtUtils::Command -e mv source... destination
26 perl -MExtUtils::Command -e cp source... destination
27 perl -MExtUtils::Command -e touch files...
28 perl -MExtUtils::Command -e rm_f files...
29 perl -MExtUtils::Command -e rm_rf directories...
30 perl -MExtUtils::Command -e mkpath directories...
31 perl -MExtUtils::Command -e eqtime source destination
32 perl -MExtUtils::Command -e test_f file
33 perl
[all...]
H A DEmbed.pm87 #include <perl.h>
229 $libperl = (grep(/^-l\w*perl\w*$/, @link_args))[0] || "-lperl";
289 perl -MExtUtils::Embed -e xsinit
290 perl -MExtUtils::Embed -e ccopts
291 perl -MExtUtils::Embed -e ldopts
315 When invoked as C<`perl -MExtUtils::Embed -e xsinit --`>
342 perl -MExtUtils::Embed -e xsinit -- -o xsinit.c Socket
345 This will generate code with an B<xs_init> function that glues the perl B<Socket::bootstrap> function
350 perl -MExtUtils::Embed -e xsinit
358 perl
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/MakeMaker/Test/
H A DUtils.pm30 my $perl = which_perl;
57 my $perl = which_perl;
59 Returns a path to perl which is safe to use in a command line, no
65 my $perl = $^X;
66 $perl ||= 'perl';
68 # VMS should have 'perl' aliased properly
69 return $perl if $Is_VMS;
71 $perl .= $Config{exe_ext} unless $perl
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dmagic.t1 #!./perl
51 $PERL = ($Is_NetWare ? 'perl' :
53 $Is_MSWin32 ? '.\perl' :
54 './perl');
204 my $perl = ($Is_MacOS || $Is_VMS) ? $^X : "$wd/perl";
211 $perl = "$wd/perl.exe";
216 $perl -x \%0
237 eval 'exec ./perl
[all...]
H A Dreadline.t1 #!./perl
12 like($@, 'Modification of a read-only value attempted', '[perl #19566]');
29 is ($result, "end", '[perl #21614] for length ' . length('k' x $k));
36 prog => "\$x = q(perl) x $k; \$a{\$x} = q(v); foreach (keys %a) {\$_ .= <>; print}",
39 is ($result, ('perl' x $k) . " rules", 'rcatline to shared sv for length ' . length('perl' x $k));
57 $k = 'perl' x $k;
58 my $perl = $k;
60 is ($k, "$perl rules\n", 'rcatline to COW sv for length ' . length $perl);
[all...]
H A Danonsub.t1 #!./perl
37 `.\\perl -I../lib $switch $tmpfile 2>&1` :
41 `perl -I../lib $switch $tmpfile 2>&1` :
42 `./perl $switch $tmpfile 2>&1`;
H A Dindex.t1 #!./perl
62 is($a, $b, q{[perl #22375] 'split'/'index' problem for utf8});
69 is($a, $b, q{[perl #22375] 'split'/'index' problem for utf8});
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/Typemap/
H A DTypemap.xs10 #include "EXTERN.h" /* std perl include */
11 #include "perl.h" /* std perl include */
63 is responsible for converting perl variables (SV, AV, HV and CV) to
107 From the perl level this is a reference to a perl array.
122 From the perl level this is a reference to a perl hash.
137 From the perl level this is a reference to a perl subroutin
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A Drecurs.t1 #!/usr/bin/perl -w
26 my $perl = which_perl();
48 my @mpl_out = run(qq{$perl Makefile.PL});
71 @mpl_out = run(qq{$perl Makefile.PL "NORECURS=1"});
95 # [rt.perl.org 4345]
96 @mpl_out = run(qq{$perl Makefile.PL "INST_SCRIPT=cgi"});
H A Dsplit_command.t1 #!/usr/bin/perl -w
23 my $perl = which_perl;
57 s{\$\(PERLRUN\)}{$perl} foreach @cmds;
/osnet-11/usr/src/cmd/perl/skel/
H A DMakefile32 STAGE = $(SRC)/cmd/perl/$(PERL_VERSION)/staging
34 PERL=/usr/perl5/$(PERL_VERSION)/bin/perl
36 PERL_MM_ARGS = INSTALLDIRS=perl CC='$(CC)' LD='$(CC)'
54 # Add any pure-perl extensions here.
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dpl_calldist.d49 perl*:::sub-entry
56 perl*:::sub-return
H A Dpl_cpudist.d49 perl*:::sub-entry
56 perl*:::sub-return
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/t/
H A Dglobal.t1 #!./perl
29 Your version of perl ($]) doesn't seem to allow extensions to override
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
H A Dops.pm11 # E.g., perl -Mops=:set1 -Mops=:setb is unlikely to do as expected.
30 perl -Mops=:default ... # only allow reasonably safe operations
32 perl -M-ops=system ... # disable the 'system' opcode
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/
H A DNox.pm32 perl -MCPAN::Nox -e shell;
38 execution. Its primary purpose is a rescue in case you upgraded perl
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dminimod.pl2 # ExtUtils::Miniperl for later perusal (when the perl source is
6 # arguments module names that shall be statically linked into perl.
119 This whole module is written when perl itself is built from a script
121 minimod.PL in the perl distribution instead.
124 libraries that relate to perl modules and should be linked into a new
125 perl binary. It writes to STDOUT a corresponding perlmain.c file that
127 modules associated with the libraries available from within perl.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dc2ph.PL1 #!/usr/local/bin/perl
47 # In this section, perl variables will be expanded during extraction.
56 # In the following, perl variables are not expanded during extraction.
65 # As c2ph, do this PLUS generate perl code for getting at the structures.
85 -n do not generate perl code (default when invoked as pstruct)
86 -p generate perl code (default when invoked as c2ph)
87 -v generate perl code, with C decls as comments
100 <tchrist@perl.com>
103 Once upon a time, I wrote a program called pstruct. It was a perl
178 But if you're a perl programme
[all...]

Completed in 63 milliseconds

1234567891011