Searched full:foo* (Results 451 - 475 of 797) sorted by relevance

<<11121314151617181920>>

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/
H A DO.pm70 perl -MO=[-q,]Backend[,OPTIONS] foo.pl
122 In summary, a compiler backend module should be called "B::Foo"
123 for some foo and live in the appropriate directory for that name.
126 perl -MO=Foo,OPTIONS foo.pl
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
H A Db.t29 package Testing::Symtable::Foo;
38 B::walksymtable(\%Testing::Symtable::, 'find_syms', sub { $_[0] =~ /Foo/ },
49 push @syms, "Testing::Symtable::Foo::yarrow";
H A Dconcise.t33 prog => q{$a||=$b && print q/foo/},
H A Ddebug.t43 $a = `$^X $path "-MO=Terse" -ane "s/foo/bar/" $redir`;
49 $a =~ s/\b(s|foo|bar|ullsv)\b\s?//g;
H A Ddeparse.t190 my $foo;
191 $_ .= <ARGV> . <$foo>;
194 my $foo = "Ab\x{100}\200\x{200}\377Cd\000Ef\x{1000}\cA\x{2000}\cZ";
H A Dlint.t24 runlint 'context', '$foo = @bar', <<'RESULT';
28 runlint 'context', '$foo = length @bar', <<'RESULT';
32 runlint 'implicit-read', '/foo/', <<'RESULT';
36 runlint 'implicit-write', 's/foo/bar/', <<'RESULT';
71 runlint 'undefined-subs', 'foo()', <<'RESULT';
72 Undefined subroutine foo called at -e line 1
H A Do.t30 my @args = ('-Ilib', '-MO=success,foo,bar', '-e', '1' );
34 is( $lines[1], '(foo) <bar>', 'O.pm should call backend compile() method' );
38 $args[1] = '-MO=-q,success,foo,bar';
47 $args[1] = '-MO=-qq,success,foo,bar';
H A Dterse.t21 sub foo {} subroutine
24 eval{ $sub = B::Terse::compile('', 'foo') };
68 my $foo = $a + $b;
74 my $boo = split('', $foo);
82 $foo = "a string";
85 $foo =~ s/(a)/$1/;
H A Dxref.t76 defined $xreftable{$thisfile}{'Testing::Xref::foo'}{main}{'%xreftable'},
84 $xreftable{$thisfile}{'(definitions)'}{'Testing::Xref'}{'&foo'}, 's1001',
85 'subroutine foo defined at line 1001'
92 $xreftable{$thisfile}{'Testing::Xref::bar'}{'Testing::Xref'}{'&foo'},
93 '&1002', 'subroutine foo called at line 1002 by bar'
96 $xreftable{$thisfile}{'Testing::Xref::foo'}{'Testing::Xref'}{'*FOO'},
97 '1001', 'glob FOO used in subroutine foo'
109 sub foo { prin subroutine
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/ByteLoader/
H A Dbytecode.h213 #define BSET_ret(foo) STMT_START { \
260 #define BSET_load_glob(foo, gv) \
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/
H A DDumper.pm288 # at this depth (i.e., 'Foo=ARRAY(0xdeadbeef)').
323 # omit -> if $foo->[0]->{bar}, but not ${$foo->[0]}->{bar}
343 # omit -> if $foo->[0]->{bar}, but not ${$foo->[0]}->{bar}
664 print Dumper($foo, $bar);
667 print Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]);
672 eval Data::Dumper->Dump([$foo, $bar], [qw(foo *ar
[all...]
H A DDumper.xs380 * at this depth (i.e., 'Foo=ARRAY(0xdeadbeef)').
454 /* omit "->" in $foo{bar}->[0], but not in ${$foo}->[0] */
538 /* omit "->" in $foo[0]->{bar}, but not in ${$foo}->{bar} */
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/t/
H A Ddumper.t289 $foo = { "abc\000\'\efg" => "mno\000",
294 TEST q(Dumper($foo));
306 TEST q(Data::Dumper::DumperX($foo)) if $XS; # cheat
317 $foo = 5;
318 @foo = (-10,\*foo);
319 %foo = (a=>1,b=>\$foo,c=>\@foo);
320 $foo{
[all...]
H A Doverload.t20 package Foo; package
23 sub new { bless { foo => "bar" }, shift }
28 my $f = Foo->new;
36 print "not " unless /bar/ && /Foo/;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/
H A DDProf.pm101 & 4 main foo
165 sub foo {
166 last FOO;
168 FOO: {
169 foo();
H A DDProf.xs551 check_depth(pTHX_ void *foo)
553 U32 need_depth = PTR2UV(foo);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/PPPort/
H A DPPPort.pm265 * perl -x ppport.h *.c *.h *.xs foo/bar*.c [etc]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/Peek/
H A DPeek.pm135 =head2 Memory footprint debugging
137 When perl is compiled with support for memory footprint debugging
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/Peek/t/
H A DPeek.t53 $a = "foo",
57 PV = $ADDR "foo"\\\0
139 PV = $ADDR "foo"\\\0
457 bless(\\undef, 'Foobar'),
474 STASH = $ADDR\s+"Foobar"');
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/
H A DMD5.pm234 print "Digest is ", md5_hex("foobarbaz"), "\n";
245 $md5->add('foo', 'bar');
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/t/
H A Dbadfile.t8 use vars qw(*FOO);
9 $md5->addfile(*FOO);
11 print "not " unless $@ =~ /^Bad filehandle: FOO at/;
H A Dbits.t21 $md5->add_bits("foo");
H A Dutf8.t16 $str = "foo\xFF\x{100}";
34 print "not " unless md5_hex("foo\xFF") eq $exp;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/
H A DEncode.pm713 After C<$utf8 = decode('foo', $octet);>,
H A DEncode.xs25 return (y)0; /* fool picky compilers */ \

Completed in 47 milliseconds

<<11121314151617181920>>