Home
last modified time | relevance | path

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

12

/mirbsd/src/gnu/usr.bin/perl/ext/Filter/Util/Call/
DCall.pm48 my $coderef = (ref $obj eq 'CODE') ;
53 $obj = bless ($obj, (caller)[0]) unless $coderef ;
56 Filter::Util::Call::real_import($obj, (caller)[0], $coderef) ;
DCall.xs213 real_import(object, perlmodule, coderef) in real_import() argument
216 int coderef in real_import()
228 CODE_REF(sv) = coderef ; in real_import()
/mirbsd/src/gnu/usr.bin/perl/ext/Encode/t/
Dfallback.t159 is($dst, $ac, "coderef encode");
160 is($src, $uo, "coderef residue encode");
164 is($dst, $uc, "coderef decode");
165 is($src, $ao, "coderef residue decode");
/mirbsd/src/gnu/usr.bin/perl/ext/B/t/
Dconcise.t182 like ($@, qr/^err: not a coderef: $typ/,
199 like ($res, qr/coderef CODE\(0x[0-9a-fA-F]+\) has no START/,
211 like ($res, qr/coderef CODE\(0x[0-9a-fA-F]+\) has no START/,
224 like ($res, qr/coderef CODE\(0x[0-9a-fA-F]+\) has no START/,
Ddeparse.t58 my $coderef = eval "sub {$input}";
65 my $deparsed = $deparse->coderef2text( $coderef );
/mirbsd/src/gnu/usr.bin/perl/ext/B/B/
DConcise.pm135 my($order, $coderef, $name) = @_;
136 my $codeobj = svref_2object($coderef);
147 my $coderef = *s{CODE} or next;
150 my $codeobj = svref_2object($coderef);
/mirbsd/src/gnu/usr.bin/perl/lib/
DBenchmark.t56 my $coderef = sub {$baz += fib($ballast)};
60 my $threesecs = countit(0, $coderef);
70 my $onesec = countit(1, $coderef);
/mirbsd/src/gnu/usr.bin/perl/lib/Pod/
DHtml.pm1592 ( $url, $fid ) = coderef( $page, $ident );
1624 ( $url, $fid ) = coderef( $page, $ident );
1714 my( $url, $fid ) = coderef( undef(), $text );
1894 sub coderef($$){ subroutine
/mirbsd/src/gnu/usr.bin/perl/t/op/
Dinccode.t198 is( $filename, 'seen', 'the coderef sees fully-qualified pathnames' );
/mirbsd/src/gnu/usr.bin/perl/pod/
Dperlref.pod74 $coderef = \&handler;
159 $coderef = sub { print "Boink!\n" };
165 C<eval("...")>), $coderef will still have a reference to the I<same>
253 $coderef = *handler{CODE};
318 &$coderef(1,2,3);
343 &{$coderef}(1,2,3);
377 $coderef->(1,2,3); # Subroutine call
Dperl573delta.pod116 document the coderef-in-@INC feature
Dperlipc.pod950 my $coderef = shift;
952 unless (@_ == 0 && $coderef && ref($coderef) eq 'CODE') {
969 exit &$coderef();
1102 my $coderef = shift;
1104 unless (@_ == 0 && $coderef && ref($coderef) eq 'CODE') {
1121 exit &$coderef();
Dperl588delta.pod380 A coderef is now acceptable for C<CHECK>!
Dperltooc.pod1089 if (my $coderef = $self->can($parent . "::CData1")) {
1090 $self->$coderef($newvalue);
Dperlboot.pod60 Wow. That symbolic coderef de-referencing there is pretty nasty.
Dperl571delta.pod489 You can now install coderef handlers, 'DEFAULT', and 'IGNORE'
Dperl5004delta.pod266 =item $coderef->(PARAMS)
Dperltoc.pod7201 =item C<sort $coderef @foo> allowed
7585 =item C<sort $coderef @foo> allowed
8165 $coderef->(PARAMS)
12543 =item coderef for CHECK
Dperl56delta.pod363 =head2 C<sort $coderef @foo> allowed
Dperl58delta.pod1400 You can now install coderef handlers, 'DEFAULT', and 'IGNORE'
Dperl561delta.pod961 =head2 C<sort $coderef @foo> allowed
/mirbsd/src/gnu/usr.bin/perl/lib/Locale/
DMaketext.pod244 If the value is a coderef, we return &$value($lh, ...parameters...).
248 it into a sub, replace the string in the %Lexicon with the new coderef,
256 Also, calling &$coderef($lh, ...parameters...) can throw any sort of
515 a defined scalar, scalarref, or coderef. The use of these is
954 coderef, then $lh->maketext(I<key>,...params...) gives up and calls:
966 # Set to a coderef:
/mirbsd/src/gnu/usr.bin/perl/ext/Encode/
DChanges7 Now accepts coderef for CHECK!
479 format for coderef aliasing. See Encode::Alias for details
/mirbsd/src/gnu/usr.bin/perl/lib/Locale/Maketext/
DTPJ13.pod540 an anonymous sub (or, conceivably, a coderef), it would be interpreted
/mirbsd/src/gnu/usr.bin/perl/
DChanges5.8.73619 Subject: [perl #32327] Benchmark calls coderef with spurious arguments

12