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

12

/macosx-10.10.1/CPANInternal-159.1/Class-Std-0.011/demo/
H A Ddemo_library_AUTOLOAD.pl18 sub AUTOLOAD { subroutine
21 # is passed in the $AUTOLOAD package variable...
22 use vars qw( $AUTOLOAD ); # Placate 'use strict'
24 $AUTOLOAD =~ m/ .* :: (.*) /xms; # by extracting method name
53 sub AUTOLOAD { subroutine
56 # is passed in the $AUTOLOAD package variable...
57 use vars qw( $AUTOLOAD ); # Placate 'use strict'
59 $AUTOLOAD =~ m/ .* :: (.*) /xms; # by extracting method name
H A Ddemo_library_AUTOLOAD_CUMULATIVE.pl18 sub AUTOLOAD :CUMULATIVE { subroutine
21 # is passed in the $AUTOLOAD package variable...
22 use vars qw( $AUTOLOAD ); # Placate 'use strict'
24 $AUTOLOAD =~ m/ .* :: (.*) /xms; # by extracting method name
53 sub AUTOLOAD :CUMULATIVE { subroutine
56 # is passed in the $AUTOLOAD package variable...
57 use vars qw( $AUTOLOAD ); # Placate 'use strict'
59 $AUTOLOAD =~ m/ .* :: (.*) /xms; # by extracting method name
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/inc/IO/
H A DWrapTie.pm36 use vars qw(@ISA $AUTOLOAD);
71 # AUTOLOAD
75 sub AUTOLOAD { subroutine
76 my $method = $AUTOLOAD;
90 # AUTOLOAD takes care of these.
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Transport/
H A DPOP3.pm23 use vars qw(@ISA $AUTOLOAD);
50 sub AUTOLOAD { subroutine
51 my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::') + 2);
55 *$AUTOLOAD = sub { shift->{_pop3server}->$method(@_) };
56 goto &$AUTOLOAD;
H A DTCP.pm162 use vars qw($AUTOLOAD @ISA);
199 sub AUTOLOAD { subroutine
200 my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::') + 2);
204 *$AUTOLOAD = sub { shift->{_socket}->$method(@_) };
205 goto &$AUTOLOAD;
H A DHTTP.pm626 use vars qw($AUTOLOAD @ISA);
685 sub AUTOLOAD { subroutine
686 my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, '::' ) + 2 );
690 *$AUTOLOAD = sub { shift->{_daemon}->$method(@_) };
691 goto &$AUTOLOAD;
/macosx-10.10.1/CPANInternal-159.1/Class-C3-XS-0.13/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
67 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
67 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/Pod-ProjectDocs-0.40/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
67 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DScalar.pm30 our $AUTOLOAD;
61 sub AUTOLOAD { subroutine
63 my $item = $AUTOLOAD;
84 our $AUTOLOAD;
91 sub AUTOLOAD { subroutine
94 my $item = $AUTOLOAD;
H A DAssert.pm29 our $AUTOLOAD;
53 sub AUTOLOAD { subroutine
55 my $item = $AUTOLOAD;
73 our $AUTOLOAD;
80 sub AUTOLOAD { subroutine
83 my $item = $AUTOLOAD;
H A DProcedural.pm27 our $AUTOLOAD;
42 unless( defined( *{ $proxy . "::AUTOLOAD" } ) ) {
43 *{ $proxy . "::AUTOLOAD" } = sub {
45 $AUTOLOAD =~ s!^.*::!!;
47 print STDERR "Calling '$AUTOLOAD' in '$class'\n"
51 my $uboat = $class->can($AUTOLOAD);
59 print STDERR "Eeek, no such method '$AUTOLOAD'\n"
H A DDate.pm171 use vars qw( $AUTOLOAD );
174 sub AUTOLOAD { subroutine
176 my $method = $AUTOLOAD;
190 use vars qw( $AUTOLOAD );
193 sub AUTOLOAD { subroutine
195 my $method = $AUTOLOAD;
H A DMath.pm26 our $AUTOLOAD;
79 sub AUTOLOAD { return; } subroutine
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Pg-0.16007/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
72 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-W3CDTF-0.06/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
72 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/Test-use-ok-0.11/inc/Module/Install/
H A DBase.pm31 sub AUTOLOAD { subroutine
72 sub AUTOLOAD {} subroutine
/macosx-10.10.1/CPANInternal-159.1/Term-ReadLine-Perl-1.0303/ReadLine/
H A DPerl.pm117 sub AUTOLOAD { subroutine
118 { $AUTOLOAD =~ s/.*:://; } # preserve match data
119 my $name = "readline::rl_$AUTOLOAD";
120 die "Unknown method `$AUTOLOAD' in Term::ReadLine::Perl"
121 unless exists $readline::{"rl_$AUTOLOAD"};
122 *$AUTOLOAD = sub { shift; &$name };
123 goto &$AUTOLOAD;
/macosx-10.10.1/CPANInternal-159.1/IPC-Signal-1.00/
H A DSignal.pm11 use vars qw($VERSION @ISA @EXPORT_OK $AUTOLOAD %Sig_num @Sig_name);
54 sub AUTOLOAD { subroutine
55 if ($AUTOLOAD ne __PACKAGE__ . '::sig_num'
56 && $AUTOLOAD ne __PACKAGE__ . '::sig_name') {
58 Carp::croak("Undefined subroutine &$AUTOLOAD called");
63 goto &$AUTOLOAD;
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D022Wrap.t43 sub AUTOLOAD {
46 $AUTOLOAD =~ s/.*:://;
47 $self->{real_logger}->$AUTOLOAD(@_);
/macosx-10.10.1/CPANInternal-159.1/Unix-Getrusage-0.03/lib/Unix/
H A DGetrusage.pm8 use AutoLoader qw(AUTOLOAD);
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Stash/
H A DXS.pm19 our $AUTOLOAD;
42 sub AUTOLOAD { subroutine
45 my $auto = $AUTOLOAD;
/macosx-10.10.1/CPANInternal-159.1/IO-KQueue-0.34/
H A DKQueue.pm4 use vars qw($VERSION @ISA @EXPORT $AUTOLOAD $MAX_EVENTS);
102 sub AUTOLOAD { subroutine
103 my $sub = $AUTOLOAD;
/macosx-10.10.1/CPANInternal-159.1/Data-Dump-1.21/lib/Data/Dump/
H A DTrace.pm111 sub AUTOLOAD { subroutine
113 our $AUTOLOAD;
114 my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DDocument.pm32 our ($COMPERR, $AUTOLOAD, $UNICODE);
177 # AUTOLOAD
183 sub AUTOLOAD { subroutine
185 my $method = $AUTOLOAD;
190 # print STDERR "called $self->AUTOLOAD($method) from $file line $line\n";
391 An C<AUTOLOAD> method provides access to the C<METADATA> items for the
465 =head2 AUTOLOAD

Completed in 260 milliseconds

12