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

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/t/
H A DNox.t26 is( \&CPAN::Nox::AUTOLOAD, \&CPAN::AUTOLOAD, 'AUTOLOAD should be aliased' );
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/
H A Dour.t15 sub AUTOLOAD { subroutine
16 for ($AUTOLOAD =~ /TieAll::(.*)/) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/
H A Drefaddr.t51 sub AUTOLOAD { subroutine
52 warn "$AUTOLOAD called";
H A Dreftype.t58 sub AUTOLOAD { subroutine
59 warn "$AUTOLOAD called";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dmethod.t112 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 DAutoLoader.pm6 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 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 DShell.pm7 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 DAutoLoader.t73 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 Dbytes.pm15 sub AUTOLOAD { subroutine
17 goto &$AUTOLOAD;
H A DFatal.pm6 our($AUTOLOAD, $Debug, $VERSION);
27 sub AUTOLOAD { subroutine
28 my $cmd = $AUTOLOAD;
31 goto &$AUTOLOAD;
H A DSelfLoader.pm5 @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 DUNIVERSAL.pm108 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 Dbigrat.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;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/
H A DNox.pm18 *AUTOLOAD = \&CPAN::AUTOLOAD;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/I18N/Langinfo/
H A DLanginfo.pm78 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 DTest.pm44 *AUTOLOAD = \&Math::BigRat::AUTOLOAD;
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/Catalog/
H A DCatalog.pm299 # 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 DNDBM_File.pm19 sub AUTOLOAD { subroutine
20 warn "Nonexistent function $AUTOLOAD invoked in Memoize::NDBM_File\n";
H A DSDBM_File.pm19 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 DPOSIX.pm3 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 DFcntl.pm58 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 DEncoder.pm13 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 DDProf.pm123 =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 DSocket.pm387 sub AUTOLOAD { subroutine
389 ($constname = $AUTOLOAD) =~ s/.*:://;
395 *$AUTOLOAD = sub { $val };
396 goto &$AUTOLOAD;

Completed in 70 milliseconds

123