/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/t/ |
H A D | Nox.t | 26 is( \&CPAN::Nox::AUTOLOAD, \&CPAN::AUTOLOAD, 'AUTOLOAD should be aliased' );
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/ |
H A D | our.t | 15 sub AUTOLOAD { subroutine 16 for ($AUTOLOAD =~ /TieAll::(.*)/) {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/ |
H A D | refaddr.t | 51 sub AUTOLOAD { subroutine 52 warn "$AUTOLOAD called";
|
H A D | reftype.t | 58 sub AUTOLOAD { subroutine 59 warn "$AUTOLOAD called";
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | method.t | 112 BEGIN { *B::e = \&C::e } # Shouldn't prevent AUTOLOAD in original pkg 119 sub B::AUTOLOAD { 121 my $method = $B::AUTOLOAD; 126 sub C::AUTOLOAD { 128 my $method = $C::AUTOLOAD; 148 *B::AUTOLOAD = sub { 150 my $method = $AUTOLOAD; 151 *$AUTOLOAD = sub { "new B: In $method, $c" }; 152 goto &$AUTOLOAD; 234 eval 'sub AUTOLOAD { "o [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | AutoLoader.pm | 6 our($VERSION, $AUTOLOAD); 21 AUTOLOAD { 22 my $sub = $AUTOLOAD; 129 *{ $callpkg . '::AUTOLOAD' } = \&AUTOLOAD 130 if @_ and $_[0] =~ /^&?AUTOLOAD$/; 174 my $symname = $callpkg . '::AUTOLOAD'; 175 undef *{ $symname } if \&{ $symname } == \&AUTOLOAD; 190 use AutoLoader 'AUTOLOAD'; # import the default AUTOLOAD subroutin [all...] |
H A D | NEXT.pm | 32 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 D | Shell.pm | 7 our($capture_stderr, $VERSION, $AUTOLOAD); 21 @EXPORT = 'AUTOLOAD'; 29 sub AUTOLOAD { subroutine 31 my $cmd = $AUTOLOAD; 36 sub $AUTOLOAD { 112 goto &$AUTOLOAD; 152 That's maybe too gonzo. It actually exports an AUTOLOAD to the current
|
H A D | AutoLoader.t | 73 AutoLoader->import( 'AUTOLOAD' ); 146 ::ok( ! defined &AUTOLOAD, 'AutoLoader should not export AUTOLOAD by default' ); 152 'unimport() should remove imported AUTOLOAD()' ); 156 sub AUTOLOAD { 'i am here' } subroutine 161 ::is( Baz->AUTOLOAD(), 'i am here', '... but not non-imported AUTOLOAD()' );
|
H A D | bytes.pm | 15 sub AUTOLOAD { subroutine 17 goto &$AUTOLOAD;
|
H A D | Fatal.pm | 6 our($AUTOLOAD, $Debug, $VERSION); 27 sub AUTOLOAD { subroutine 28 my $cmd = $AUTOLOAD; 31 goto &$AUTOLOAD;
|
H A D | SelfLoader.pm | 5 @EXPORT = qw(AUTOLOAD); 22 AUTOLOAD { 23 print STDERR "SelfLoader::AUTOLOAD for $AUTOLOAD\n" if $DEBUG; 24 my $SL_code = $Cache{$AUTOLOAD}; 25 my $save = $@; # evals in both AUTOLOAD and _load_stubs can corrupt $@ 29 $AUTOLOAD =~ m/^(.*)::/; 31 $SL_code = $Cache{$AUTOLOAD}; 32 $SL_code = "sub $AUTOLOAD { }" 33 if (!$SL_code and $AUTOLOAD [all...] |
H A D | UNIVERSAL.pm | 108 through AUTOLOAD, so a return value of I<undef> does not necessarily mean 111 for methods they will handle via AUTOLOAD. For such 'dummy' subs, C<can> 113 to the AUTOLOAD. If no suitable AUTOLOAD is provided, calling the coderef
|
H A D | bigrat.pm | 14 # 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;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/ |
H A D | Nox.pm | 18 *AUTOLOAD = \&CPAN::AUTOLOAD;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/I18N/Langinfo/ |
H A D | Langinfo.pm | 78 sub AUTOLOAD { subroutine 79 # This AUTOLOAD is used to 'autoload' constants from the constant() 83 our $AUTOLOAD; 84 ($constname = $AUTOLOAD) =~ s/.*:://; 92 #XXX *$AUTOLOAD = sub () { $val }; 95 *$AUTOLOAD = sub { $val }; 98 goto &$AUTOLOAD;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Math/BigRat/ |
H A D | Test.pm | 44 *AUTOLOAD = \&Math::BigRat::AUTOLOAD;
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/Catalog/ |
H A D | Catalog.pm | 299 # AUTOLOAD for constant definitions. Values are looked up in the %_Constants 302 # calls will bypass the AUTOLOAD and call the sub directly. 304 sub AUTOLOAD subroutine 307 our $AUTOLOAD; 308 my $const = $AUTOLOAD; 337 *{$AUTOLOAD} = $sub; 342 # To quieten AUTOLOAD - if this isn't defined AUTLOAD will be called
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/ |
H A D | NDBM_File.pm | 19 sub AUTOLOAD { subroutine 20 warn "Nonexistent function $AUTOLOAD invoked in Memoize::NDBM_File\n";
|
H A D | SDBM_File.pm | 19 sub AUTOLOAD { subroutine 20 warn "Nonexistent function $AUTOLOAD invoked in Memoize::SDBM_File\n";
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/ |
H A D | POSIX.pm | 3 our(@ISA, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD) = (); 32 sub AUTOLOAD { subroutine 33 if ($AUTOLOAD =~ /::(_?[a-z])/) { 35 $AutoLoader::AUTOLOAD = $AUTOLOAD; 36 goto &AutoLoader::AUTOLOAD 39 my $constname = $AUTOLOAD; 44 *$AUTOLOAD = sub { &int_macro_int($constname, $_[0]) }; 48 *$AUTOLOAD = sub { $val }; 51 goto &$AUTOLOAD; [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Fcntl/ |
H A D | Fcntl.pm | 58 our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $AUTOLOAD); 222 sub AUTOLOAD { subroutine 223 (my $constname = $AUTOLOAD) =~ s/.*:://; 230 *$AUTOLOAD = sub { $val }; 231 goto &$AUTOLOAD;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/ |
H A D | Encoder.pm | 13 our $AUTOLOAD; 72 sub AUTOLOAD { subroutine 76 my $myname = $AUTOLOAD;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/ |
H A D | DProf.pm | 123 =head1 AUTOLOAD 125 When Devel::DProf finds a call to an C<&AUTOLOAD> subroutine it looks at the 126 C<$AUTOLOAD> variable to find the real name of the sub being called. See
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/ |
H A D | Socket.pm | 387 sub AUTOLOAD { subroutine 389 ($constname = $AUTOLOAD) =~ s/.*:://; 395 *$AUTOLOAD = sub { $val }; 396 goto &$AUTOLOAD;
|