Searched refs:AUTOLOAD (Results 101 - 125 of 167) sorted by relevance

1234567

/macosx-10.9.5/CPANInternal-140/Authen-Krb5/
H A DKrb5.pm5 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
63 sub AUTOLOAD { subroutine
64 # This AUTOLOAD is used to 'autoload' constants from the constant()
66 # to the AUTOLOAD in AutoLoader.
69 ($constname = $AUTOLOAD) =~ s/.*:://;
73 $AutoLoader::AUTOLOAD = $AUTOLOAD;
74 goto &AutoLoader::AUTOLOAD;
80 eval "sub $AUTOLOAD { $val }";
81 goto &$AUTOLOAD;
[all...]
/macosx-10.9.5/CPANInternal-140/Krb5-1.9/
H A DKrb5.pm5 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
63 sub AUTOLOAD { subroutine
64 # This AUTOLOAD is used to 'autoload' constants from the constant()
66 # to the AUTOLOAD in AutoLoader.
69 ($constname = $AUTOLOAD) =~ s/.*:://;
73 $AutoLoader::AUTOLOAD = $AUTOLOAD;
74 goto &AutoLoader::AUTOLOAD;
80 eval "sub $AUTOLOAD { $val }";
81 goto &$AUTOLOAD;
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/
H A DHeader.pm13 use vars qw($VERSION $AUTOLOAD);
125 # Some people have reported that Net::DNS dies because AUTOLOAD picks up
307 sub AUTOLOAD { subroutine
310 my $name = $AUTOLOAD;
313 croak "$AUTOLOAD: no such method" unless exists $self->{$name};
H A DRR.pm12 use vars qw($VERSION $AUTOLOAD %rrsortfunct );
536 # Some people have reported that Net::DNS dies because AUTOLOAD picks up
605 # Used to AUTOLOAD this, but apparently some versions of Perl (specifically
793 sub AUTOLOAD { subroutine
795 my ($name) = $AUTOLOAD =~ m/^.*::(.*)$/o;
829 *{$AUTOLOAD} = sub {
840 goto &{$AUTOLOAD};
/macosx-10.9.5/CPANInternal-140/PlRPC/lib/RPC/
H A DPlClient.pm134 use vars qw($AUTOLOAD);
136 sub AUTOLOAD { subroutine
137 my $method = $AUTOLOAD;
154 goto &$AUTOLOAD;
/macosx-10.9.5/CPANInternal-140/PlRPC-0.2020/lib/RPC/
H A DPlClient.pm134 use vars qw($AUTOLOAD);
136 sub AUTOLOAD { subroutine
137 my $method = $AUTOLOAD;
154 goto &$AUTOLOAD;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DDumper.pm31 our $AUTOLOAD;
H A DImage.pm26 our $AUTOLOAD;
195 sub AUTOLOAD { subroutine
197 (my $a = $AUTOLOAD) =~ s/.*:://;
H A DTable.pm28 our $AUTOLOAD;
203 # AUTOLOAD
208 sub AUTOLOAD { subroutine
210 my $item = $AUTOLOAD;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/
H A DView.pm35 our $AUTOLOAD;
106 # view template to create data items via the AUTOLOAD; once sealed via
107 # call to seal(), the AUTOLOAD will not update any internal items.
125 # automatically created by the AUTOLOAD method.
393 # AUTOLOAD
408 sub AUTOLOAD { subroutine
410 my $item = $AUTOLOAD;
699 Prefix of methods which should be mapped to view() by AUTOLOAD. Defaults
H A DIterator.pm36 our $AUTOLOAD;
209 # AUTOLOAD
214 sub AUTOLOAD { subroutine
216 my $item = $AUTOLOAD;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DDumper.pm31 our $AUTOLOAD;
H A DImage.pm26 our $AUTOLOAD;
195 sub AUTOLOAD { subroutine
197 (my $a = $AUTOLOAD) =~ s/.*:://;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/
H A DView.pm35 our $AUTOLOAD;
106 # view template to create data items via the AUTOLOAD; once sealed via
107 # call to seal(), the AUTOLOAD will not update any internal items.
125 # automatically created by the AUTOLOAD method.
393 # AUTOLOAD
408 sub AUTOLOAD { subroutine
410 my $item = $AUTOLOAD;
699 Prefix of methods which should be mapped to view() by AUTOLOAD. Defaults
H A DIterator.pm36 our $AUTOLOAD;
209 # AUTOLOAD
214 sub AUTOLOAD { subroutine
216 my $item = $AUTOLOAD;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/UDDI/
H A DLite.pm73 use vars qw(@ISA $AUTOLOAD);
172 sub AUTOLOAD { subroutine
173 my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::') + 2);
177 goto &$AUTOLOAD;
253 use vars qw(@ISA $AUTOLOAD %EXPORT_TAGS);
320 sub AUTOLOAD { subroutine
321 my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::') + 2);
325 *$AUTOLOAD
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/lib/UDDI/
H A DLite.pm729 use vars qw(@ISA $AUTOLOAD);
857 sub AUTOLOAD subroutine
859 my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, '::' ) + 2 );
863 goto &$AUTOLOAD;
960 use vars qw(@ISA $AUTOLOAD %EXPORT_TAGS);
1049 sub AUTOLOAD subroutine
1051 my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, '::' ) + 2 );
1055 *$AUTOLOAD
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/UDDI/
H A DLite.pm731 use vars qw(@ISA $AUTOLOAD);
859 sub AUTOLOAD subroutine
861 my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, '::' ) + 2 );
865 goto &$AUTOLOAD;
959 use vars qw(@ISA $AUTOLOAD %EXPORT_TAGS);
1047 sub AUTOLOAD subroutine
1049 my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, '::' ) + 2 );
1053 *$AUTOLOAD
[all...]
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DDSML.pm658 use vars qw($AUTOLOAD);
662 sub AUTOLOAD { subroutine
663 (my $meth = $AUTOLOAD) =~ s/^.*:://;
673 use vars qw($AUTOLOAD);
677 sub AUTOLOAD { subroutine
678 (my $meth = $AUTOLOAD) =~ s/^.*:://;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/
H A DLite.pm96 use vars qw(@EXPORT $AUTOLOAD);
98 sub AUTOLOAD { subroutine
100 my($package, $method) = $AUTOLOAD =~ m/(?:(.+)::)([^:]+)$/;
122 *$AUTOLOAD = sub {
127 goto &$AUTOLOAD;
222 *AUTOLOAD if 0;
224 *AUTOLOAD = \&SOAP::XMLSchema1999::Serializer::AUTOLOAD;
497 use vars qw($AUTOLOAD @ISA);
533 sub AUTOLOAD { subroutine
2688 sub AUTOLOAD { subroutine
3090 sub AUTOLOAD { subroutine
3368 sub AUTOLOAD { subroutine
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/lib/SOAP/
H A DLite.pm61 use vars qw(@EXPORT $AUTOLOAD);
63 sub AUTOLOAD { subroutine
65 my($package, $method) = $AUTOLOAD =~ m/(?:(.+)::)([^:]+)$/;
87 *$AUTOLOAD = sub {
92 goto &$AUTOLOAD;
219 *AUTOLOAD if 0;
221 *AUTOLOAD = \&SOAP::XMLSchema1999::Serializer::AUTOLOAD;
432 use vars qw($AUTOLOAD @ISA);
479 sub AUTOLOAD { subroutine
3007 sub AUTOLOAD { subroutine
3428 sub AUTOLOAD { subroutine
3749 sub AUTOLOAD { subroutine
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/SOAP/
H A DLite.pm62 use vars qw(@EXPORT $AUTOLOAD);
64 sub AUTOLOAD { subroutine
66 my($package, $method) = $AUTOLOAD =~ m/(?:(.+)::)([^:]+)$/;
88 *$AUTOLOAD = sub {
93 goto &$AUTOLOAD;
220 *AUTOLOAD if 0;
222 *AUTOLOAD = \&SOAP::XMLSchema1999::Serializer::AUTOLOAD;
426 use vars qw($AUTOLOAD @ISA);
471 sub AUTOLOAD { subroutine
2875 sub AUTOLOAD { subroutine
3295 sub AUTOLOAD { subroutine
3616 sub AUTOLOAD { subroutine
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/perl/BerkeleyDB/
H A DBerkeleyDB.pm17 use vars qw($VERSION @ISA @EXPORT $AUTOLOAD
551 sub AUTOLOAD { subroutine
553 ($constname = $AUTOLOAD) =~ s/.*:://;
557 *{$AUTOLOAD} = sub { $val };
558 goto &{$AUTOLOAD};
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/Resolver/
H A DBase.pm15 $AUTOLOAD
133 # We also deprecate access to these with AUTOLOAD (some may be useful).
201 # Some people have reported that Net::DNS dies because AUTOLOAD picks up
1517 sub AUTOLOAD { subroutine
1520 my $name = $AUTOLOAD;
1528 *{$AUTOLOAD} = sub {
1539 goto &{$AUTOLOAD};
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/
H A DAppender.pm244 sub AUTOLOAD { subroutine
254 $AUTOLOAD =~ s/.*:://;
256 return $self->{appender}->$AUTOLOAD(@_);

Completed in 423 milliseconds

1234567