Searched defs:AUTOLOAD (Results 1 - 25 of 31) sorted by relevance

12

/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/lib/
H A Dutf8.pm16 sub AUTOLOAD { subroutine
18 goto &$AUTOLOAD if defined &$AUTOLOAD;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
H A DDigest.pm4 use vars qw($VERSION %MMAP $AUTOLOAD);
52 sub AUTOLOAD subroutine
55 my $algorithm = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
H A Dbytes.pm15 sub AUTOLOAD { subroutine
17 goto &$AUTOLOAD;
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 DFatal.pm6 our($AUTOLOAD, $Debug, $VERSION);
27 sub AUTOLOAD { subroutine
28 my $cmd = $AUTOLOAD;
31 goto &$AUTOLOAD;
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 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 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;
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()' );
/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/ext/List/Util/t/
H A Dreftype.t58 sub AUTOLOAD { subroutine
59 warn "$AUTOLOAD called";
H A Drefaddr.t51 sub AUTOLOAD { subroutine
52 warn "$AUTOLOAD called";
/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/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/Socket/
H A DSocket.pm387 sub AUTOLOAD { subroutine
389 ($constname = $AUTOLOAD) =~ s/.*:://;
395 *$AUTOLOAD = sub { $val };
396 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/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/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/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/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/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/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/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;

Completed in 105 milliseconds

12