Searched refs:AutoLoader (Results 1 - 14 of 14) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DAutoLoader.pm1 package AutoLoader; package
127 if ($pkg eq 'AutoLoader') {
185 AutoLoader - load subroutines only on demand
190 use AutoLoader 'AUTOLOAD'; # import the default AUTOLOAD subroutine
193 use AutoLoader; # don't import AUTOLOAD, define our own
196 $AutoLoader::AUTOLOAD = "...";
197 goto &AutoLoader::AUTOLOAD;
202 The B<AutoLoader> module works with the B<AutoSplit> module and the
206 To use B<AutoLoader>, the author of a module has to place the
211 B<AutoLoader> implement
[all...]
H A DAutoLoader.t72 require AutoLoader;
73 AutoLoader->import( 'AUTOLOAD' );
106 # to go wrong because AutoLoader used regular expressions to generate
116 # exception, including compilation error. Now AutoLoader only
145 AutoLoader->import();
146 ::ok( ! defined &AUTOLOAD, 'AutoLoader should not export AUTOLOAD by default' );
149 AutoLoader->unimport();
158 AutoLoader->import();
159 AutoLoader->unimport();
H A DAutoSplit.t3 # AutoLoader.t runs before this test, so it seems safe to assume that it will
207 use AutoLoader 'AUTOLOAD';
209 use AutoLoader 'AUTOLOAD';
211 @Yet::Another::AutoSplit::ISA = 'AutoLoader';
274 missing use AutoLoader;
283 missing use AutoLoader; (but don't skip)
299 use AutoLoader 'AUTOLOAD';
324 use AutoLoader 'AUTOLOAD';
356 use AutoLoader 'AUTOLOAD';
H A Dvars.pm72 Packages such as the B<AutoLoader> and B<SelfLoader> that delay
H A DAutoSplit.pm31 This function will split up your program into files that the AutoLoader
58 specification for the AutoLoader module, and skips the module if
59 AutoLoader is not detected.
80 the AutoLoader, and ensuring that the module is not already currently split
247 ++$autoloader_seen if m/^\s*(use|require)\s+AutoLoader\b/;
252 print "AutoSplit skipped $filename: no AutoLoader used\n"
292 # create filenames which exactly match the names used by AutoLoader.pm.
H A DSelfLoader.pm217 =head2 SelfLoader and AutoLoader
219 The B<SelfLoader> can replace the AutoLoader - just change 'use AutoLoader'
222 are using the AutoLoader too, you probably know what you're doing),
228 The B<SelfLoader> works similarly to the AutoLoader, but picks up the
233 to parse the code after the C<__DATA__>. Details of the B<AutoLoader> and
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Sys/Hostname/
H A DHostname.pm8 require AutoLoader;
10 our @ISA = qw/ Exporter AutoLoader /;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/
H A DPOSIX.pm7 use AutoLoader;
34 # require AutoLoader;
35 $AutoLoader::AUTOLOAD = $AUTOLOAD;
36 goto &AutoLoader::AUTOLOAD
56 use AutoLoader 'AUTOLOAD';
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/I18N/Langinfo/
H A DLanginfo.pm10 use AutoLoader;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DXref.pm336 foreach $pack (qw(B O AutoLoader DynaLoader XSLoader Config DB VMS
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DConstant.pm1242 is true, the AUTOLOAD subroutine falls back on AutoLoader::AUTOLOAD for all
1258 . " # to the AUTOLOAD in AutoLoader." if $autoloader;
1276 $AutoLoader::AUTOLOAD = $AUTOLOAD;
1277 goto &AutoLoader::AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/
H A DDynaLoader_pm.PL34 require AutoLoader;
35 *AUTOLOAD = \&AutoLoader::AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dh2xs.PL76 removes the S<C<use AutoLoader>> statement from the .pm file.
251 Do not use the module C<AutoLoader>; but keep the constant() function
423 L<perl>, L<perlxstut>, L<ExtUtils::MakeMaker>, and L<AutoLoader>.
551 --skip-autoloader Do not use the module C<AutoLoader>
1107 # Are we using AutoLoader or not?
1110 print PM "use AutoLoader;\n";
1113 print PM "use AutoLoader qw(AUTOLOAD);\n"
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/
H A DStorable.pm21 use AutoLoader;
25 *AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr...

Completed in 38 milliseconds