Searched defs:croak (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | autouse.pm | 12 sub croak { subroutine 14 Carp::croak(@_); 19 croak "usage: use $class MODULE [,SUBS...]" unless @_; 47 croak "autouse into different package attempted" 76 croak "autoused module has unique import() method" 92 use autouse 'Carp' => qw(carp croak); 155 use autouse Module => qw(carp($) croak(&$));
|
H A D | SelfLoader.pm | 20 sub croak { require Carp; goto &Carp::croak } subroutine 34 croak "Undefined subroutine $AUTOLOAD" unless $SL_code; 41 croak $@; 59 croak("$callpack doesn't contain an __DATA__ token")
|
H A D | attributes.pm | 11 sub croak { subroutine 13 goto &Carp::croak; 65 croak "Invalid $svtype attribute" . 74 croak 'Usage: '.__PACKAGE__.'::get $ref'; 210 empty. If passed invalid arguments, it uses die() (via L<Carp::croak|Carp>)
|
H A D | utf8_heavy.pl | 11 sub croak { require Carp; Carp::croak(@_) } subroutine 265 croak "$type: illegal mapping '$_'" 323 croak("SWASHGET size mismatch") if $bits < $otherbits;
|
H A D | Carp.pm | 12 croak - die of errors (from perspective of caller) 16 shortmess - return the message that carp and croak produce 23 croak "We're outta here!"; 38 croak or shortmess which report the error as being from where 79 reporting the error where you call carp/croak/shortmess.) 85 As a debugging aid, you can force Carp to treat a croak as a confess 117 # croak. They replace $CarpLevel, which is deprecated. The 134 @EXPORT = qw(confess croak carp); 171 # shortmess() is called by carp() and croak() to skip all the way up to 188 # or simply report the caller's package (croak() an 191 sub croak { die shortmess @_ } subroutine [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/ |
H A D | POSIX.pm | 22 sub croak { require Carp; goto &Carp::croak } subroutine 43 croak $error if $error; 47 croak $error if $error; 66 croak "Usage: POSIX::$mess"; 71 croak "Use method $mess instead"; 77 croak "Unimplemented: POSIX::$mess"; 83 croak "Assertion failed";
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/ |
H A D | Memoize.pm | 9 sub croak {require Carp; goto &Carp::croak} subroutine 42 croak 'syntax: tie %hash, \'Tie::AutoLoad\', \&fetch_subr' if @_ < 2; 43 croak 'syntax: tie %hash, \'Tie::AutoLoad\', \&fetch_subr, $data, \&exists_subr, \%data_cache, \%existence_cache' if @_ > 6;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/ |
H A D | Carp.pm | 11 croak "We're outta here!"; 36 And the standard warn(), die (), croak(), confess() and carp() calls 285 really custom error messages. croak and carp are now 343 @EXPORT = qw(confess croak carp); 503 sub croak { CGI::Carp::die Carp::shortmess @_; } subroutine
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
H A D | util.c | 180 croak(char *pat,...) function
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | embed.h | 117 #define croak Perl_croak macro 5138 # define croak Perl_croak_nocontext macro
|
Completed in 837 milliseconds