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

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDigest.pm4 use vars qw($VERSION %MMAP $AUTOLOAD);
52 sub AUTOLOAD subroutine
55 my $algorithm = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
H A Dstrict.pm82 is allowed so that C<goto &$AUTOLOAD> would not break under stricture.
H A DExporter.pm409 =head2 C<AUTOLOAD>ed Constants
411 Many modules make use of C<AUTOLOAD>ing for constant subroutines to
418 subroutine is not (it hasn't been C<AUTOLOAD>ed yet). perl needs to
433 This forces the C<AUTOLOAD> for C<SO_LINGER> to take place before
436 If you are writing a package that C<AUTOLOAD>s, consider forcing
437 an C<AUTOLOAD> for any constants explicitly imported by other packages
H A Dutf8.pm16 sub AUTOLOAD { subroutine
18 goto &$AUTOLOAD if defined &$AUTOLOAD;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
H A Dbigint.pm15 # These are all alike, and thus faked by AUTOLOAD
18 use vars qw/$VERSION $AUTOLOAD $_lite/; # _lite for testsuite
20 sub AUTOLOAD subroutine
22 my $name = $AUTOLOAD;
H A Doverload.t309 *Oscalar::AUTOLOAD =
310 sub { *{"Oscalar::$AUTOLOAD"} = sub {"_!_" . shift() . "_!_"} ;
311 goto &{"Oscalar::$AUTOLOAD"}};
H A Dbignum.pm14 # These are all alike, and thus faked by AUTOLOAD
17 use vars qw/$VERSION $AUTOLOAD $_lite/; # _lite for testsuite
19 sub AUTOLOAD subroutine
21 my $name = $AUTOLOAD;
340 Beside import() and AUTOLOAD() there are only a few other methods.
H A DAutoSplit.t207 use AutoLoader 'AUTOLOAD';
209 use AutoLoader 'AUTOLOAD';
299 use AutoLoader 'AUTOLOAD';
324 use AutoLoader 'AUTOLOAD';
356 use AutoLoader 'AUTOLOAD';
H A Dconstant.pm13 my %keywords = map +($_, 1), qw{ BEGIN INIT CHECK END DESTROY AUTOLOAD };
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DConstant.pm22 perl modules to AUTOLOAD constants defined in C library header files.
1096 I<PACKAGE>::constant used by I<PACKAGE>::AUTOLOAD to load constants.
1239 A function to generate the AUTOLOAD subroutine for the module I<PACKAGE>
1242 is true, the AUTOLOAD subroutine falls back on AutoLoader::AUTOLOAD for all
1254 my $func = "sub AUTOLOAD {\n"
1255 . " # This AUTOLOAD is used to 'autoload' constants from the constant()\n"
1258 . " # to the AUTOLOAD in AutoLoader." if $autoloader;
1264 " our \$AUTOLOAD;\n" if ($compat_version >= 5.006);
1267 (\$constname = \$AUTOLOAD)
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dpl2pm.PL171 AUTOLOAD
H A Ddprofpp.PL166 Count timing for autoloaded subroutine as timing for C<*::AUTOLOAD>.
171 C<Devel::DProf> I<when> the C<AUTOLOAD> switches to actual subroutine,
172 so a separate statistics for C<AUTOLOAD> will be collected no matter
371 # -A count autoloaded to *AUTOLOAD
847 if ($x->[0] =~ /(?:::)?AUTOLOAD$/) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
H A Dbigfltpm.inc58 # some unary ops (test the fxxx form, since that is done by AUTOLOAD)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/
H A DHiRes.pm4 use vars qw($VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
22 sub AUTOLOAD { subroutine
24 ($constname = $AUTOLOAD) =~ s/.*:://;
30 *$AUTOLOAD = sub { $val };
32 goto &$AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DANSIColor.pm21 use vars qw($AUTOLOAD $AUTORESET $EACHLINE @ISA @EXPORT @EXPORT_OK
84 # as duplicate the %attributes hash, so instead we define an AUTOLOAD sub to
93 sub AUTOLOAD { subroutine
96 ($sub = $AUTOLOAD) =~ s/^.*:://;
101 sub $AUTOLOAD {
109 goto &$AUTOLOAD;
112 Carp::croak ("undefined subroutine &$AUTOLOAD called");
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/run/
H A Dfresh_perl.t470 sub AUTOLOAD {
471 $AUTOLOAD =~ /::([^:]+)$/;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/
H A DGlob.pm5 $AUTOLOAD, $DEFAULT_FLAGS);
80 sub AUTOLOAD { subroutine
81 # This AUTOLOAD is used to 'autoload' constants from the constant()
83 # to the AUTOLOAD in AutoLoader.
86 ($constname = $AUTOLOAD) =~ s/.*:://;
92 eval "sub $AUTOLOAD { $val }";
93 goto &$AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Devel/
H A DSelfStubber.pm5 @EXPORT = 'AUTOLOAD';
125 the AUTOLOAD mechanism in B because it first finds the method
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Errno/
H A DErrno_pm.PL290 our (\@EXPORT_OK,\%EXPORT_TAGS,\@ISA,\$VERSION,\%errno,\$AUTOLOAD);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/
H A DDynaLoader_pm.PL30 use vars qw($VERSION *AUTOLOAD);
35 *AUTOLOAD = \&AutoLoader::AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Attribute/
H A DHandlers.pm102 sub AUTOLOAD { subroutine
103 my ($class) = $AUTOLOAD =~ m/(.*)::/g;
104 $AUTOLOAD =~ m/_ATTR_(.*?)_(.*)/ or
105 croak "Can't locate class method '$AUTOLOAD' via package '$class'";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DLint.pm90 definition of subs until runtime by means of the AUTOLOAD
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Sys/Syslog/
H A DSyslog.pm147 sub AUTOLOAD { subroutine
148 # This AUTOLOAD is used to 'autoload' constants from the constant()
152 ($constname = $AUTOLOAD) =~ s/.*:://;
157 *$AUTOLOAD = sub { $val };
158 goto &$AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A DConstant.t351 use vars qw ($VERSION @ISA @EXPORT_OK $AUTOLOAD);
363 # Print the AUTOLOAD subroutine ExtUtils::Constant generated for us
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
H A DSafe.pm339 foreach my $hook (qw(DESTROY AUTOLOAD), grep /^\(/, keys %$root) {
690 module, which uses eval "..." as part of an AUTOLOAD function. You can
694 from the compartment, then the eval in the Socket module's AUTOLOAD

Completed in 55 milliseconds

123