Searched refs:AUTOLOAD (Results 51 - 57 of 57) sorted by relevance

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dh2xs.PL141 C<AUTOLOAD> from the .pm file.
252 and C<sub AUTOLOAD> for constants.
300 # Without constant() or AUTOLOAD
527 -c, --omit-constant Omit the constant() function and specialised AUTOLOAD
1089 # we'll have an AUTOLOAD(), and it will have $AUTOLOAD and
1109 unless ($opt_c) { # we're doing the AUTOLOAD
1113 print PM "use AutoLoader qw(AUTOLOAD);\n"
1120 $vars .= ' $AUTOLOAD' unless $opt_X || $opt_c || $opt_A;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm63 *AUTOLOAD = \&Math::BigFloat::AUTOLOAD;
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/Storable/
H A DStorable.pm25 *AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr...
/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
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
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...]

Completed in 58 milliseconds

123