Searched defs:AUTOLOAD (Results 26 - 31 of 31) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DNEXT.pm32 sub AUTOLOAD subroutine
36 my $wanted = $NEXT::AUTOLOAD || 'NEXT::AUTOLOAD';
37 undef $NEXT::AUTOLOAD;
57 unless $wanted_method eq 'AUTOLOAD';
59 map { (*{"${_}::AUTOLOAD"}{CODE}) ? "${_}::AUTOLOAD" : ()} @forebears
77 ($wanted_method=${$caller_class."::AUTOLOAD"}) =~ s/.*:://
78 if $wanted_method eq 'AUTOLOAD';
94 sub AUTOLOAD subroutine
[all...]
H A DCGI.pm277 # _compile looks at $AUTOLOAD for the function name.
279 local $AUTOLOAD = join "::", $class, $method;
856 sub AUTOLOAD { subroutine
857 print STDERR "CGI::AUTOLOAD for $AUTOLOAD\n" if $CGI::AUTOLOAD_DEBUG;
863 my($func) = $AUTOLOAD;
878 croak("$AUTOLOAD: $@") if $@;
883 $code = "sub $AUTOLOAD { }" if (!$code and $func_name eq 'DESTROY');
894 croak("Undefined subroutine $AUTOLOAD\n") unless $code;
899 croak("$AUTOLOAD
[all...]
H A DCPAN.pm61 use vars qw($VERSION @EXPORT $AUTOLOAD $DEBUG $META $HAS_USABLE $term
72 #-> sub CPAN::AUTOLOAD ;
73 sub AUTOLOAD { subroutine
74 my($l) = $AUTOLOAD;
82 $CPAN::Frontend->mywarn(qq{Unknown command "$AUTOLOAD". }.
308 use vars qw($AUTOLOAD @ISA $COLOR_REGISTERED $ADVANCED_QUERY $PRINT_ORNAMENTING);
313 #-> sub CPAN::Shell::AUTOLOAD ;
314 sub AUTOLOAD { subroutine
315 my($autoload) = $AUTOLOAD;
338 use vars qw($AUTOLOAD
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dgoto.t274 sub AUTOLOAD { print @_ } subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigFloat.pm23 use vars qw/$AUTOLOAD $accuracy $precision $div_scale $round_mode $rnd_mode
89 # valid method aliases for AUTOLOAD
95 # valid method's that can be hand-ed up (for AUTOLOAD)
2173 # going through AUTOLOAD for every DESTROY is costly, avoid it by empty sub
2176 sub AUTOLOAD subroutine
2180 my $name = $AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DDeparse.pm26 use vars qw/$AUTOLOAD/;
471 # to find out if it belongs here is to see if the AUTOLOAD
473 my $A = $stash{"AUTOLOAD"};
482 my $A = $stash{"AUTOLOAD"};
1066 sub AUTOLOAD { subroutine
1067 if ($AUTOLOAD =~ s/^.*::pp_//) {
1068 warn "unexpected OP_".uc $AUTOLOAD;
1071 die "Undefined subroutine $AUTOLOAD called";
1075 sub DESTROY {} # Do not AUTOLOAD

Completed in 38 milliseconds

12