/openbsd-src/gnu/usr.bin/perl/cpan/NEXT/lib/ |
H A D | NEXT.pm | 85 my $call_method = shift @{$NEXT::NEXT{$key,$wanted_method}}; 87 && defined $call_method 88 && $NEXT::SEEN->{$key,$call_method}++) { 89 $call_method = shift @{$NEXT::NEXT{$key,$wanted_method}}; 91 unless (defined $call_method) { 97 return $self->$call_method(@_[1..$#_]) if ref $call_method eq 'CODE'; 101 $$call_method = $caller_class."::NEXT::".$wanted_method; 102 return $call_method->(@_);
|
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
H A D | call.t | 89 ok(eq_array( [ call_method('meth', $flags, $obj, @$args) ], $expected), 90 "$description call_method('meth')"); 135 ok(eq_array( [ call_method('d', $flags|G_EVAL|$keep, $obj, @$args) ], 137 "$desc G_EVAL call_method('d')"); 138 is($@, $exp_err, "$desc G_EVAL call_method('d') - \$@"); 139 is($warn, $exp_warn, "$desc G_EVAL call_method('d') - warning"); 154 # XXX call_method(G_NOARGS) isn't tested: I'm assuming 171 ok(eq_array( [ eval { call_method('d', $flags, $obj, @$args) }, $@ ], 172 [ "its_dead_jim\n" ]), "$description eval { call_method('d') }");
|
/openbsd-src/gnu/usr.bin/perl/ext/PerlIO-encoding/ |
H A D | encoding.xs | 84 if (call_method("name", G_SCALAR) == 1) { in PerlIOEncode_getarg() 142 if (call_method("renew",G_SCALAR|G_EVAL) != 1 || SvTRUE(ERRSV)) { in PerlIOEncode_pushed() 156 if (call_method("needs_lines",G_SCALAR|G_EVAL) != 1 || SvTRUE(ERRSV)) { in PerlIOEncode_pushed() 338 if (call_method("decode", G_SCALAR) != 1) { in PerlIOEncode_fill() 429 if (call_method("encode", G_SCALAR) != 1) { in PerlIOEncode_flush() 495 if (call_method("encode", G_SCALAR) != 1) { in PerlIOEncode_flush()
|
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
H A D | call | 19 call_method 31 __UNDEFINED__ call_method perl_call_method 318 call_method(methname, flags, ...) 329 i = call_method(methname, flags); 404 ok(eq_array( [ &Devel::PPPort::call_method('meth', $flags, $obj, @$args) ], $expected));
|
/openbsd-src/gnu/usr.bin/perl/dist/PathTools/ |
H A D | Cwd.xs | 695 call_method("canonpath", G_SCALAR); 749 call_method("canonpath", G_SCALAR); 763 call_method("catdir", G_SCALAR);
|
/openbsd-src/gnu/usr.bin/perl/pod/ |
H A D | perlcall.pod | 58 I32 call_method(char *methname, I32 flags); 91 =item call_method 93 The function I<call_method> is used to call a method from a Perl 99 static and virtual methods and L</Using call_method> for an example 100 of using I<call_method>. 1249 =head2 Using call_method 1325 call_method(method, G_DISCARD); 1336 call_method(method, G_DISCARD); 1347 parameter to I<call_method>.
|
H A D | perlinterp.pod | 820 7 call_method("PUSH", G_SCALAR|G_DISCARD); 850 7 call_method("PUSH", G_SCALAR|G_DISCARD); 859 Perl space: C<call_method> takes care of that, and it's described in 861 going to discard its return value. The call_method() function removes
|
H A D | perlguts.pod | 2192 I32 call_method(const char*, I32);
|
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/ |
H A D | Encode.xs | 599 count = call_method(method, G_SCALAR); in call_encoding() 651 if (call_method("renewed",G_SCALAR) == 1) {
|
/openbsd-src/gnu/usr.bin/perl/dist/Data-Dumper/ |
H A D | Dumper.xs | 480 n = call_method("new", G_SCALAR); in deparsed_output() 491 n = call_method("coderef2text", G_SCALAR); in deparsed_output()
|
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/todo/ |
H A D | 5003007 | 29 call_method # T
|
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/base/ |
H A D | 5006000 | 50 call_method # E (perl_call_method)
|
/openbsd-src/gnu/usr.bin/perl/dist/Storable/ |
H A D | Storable.xs | 3246 count = call_method("new", G_SCALAR); in store_code() 3260 count = call_method("coderef2text", G_SCALAR); in store_code()
|
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/ |
H A D | ppport.h | 15379 #ifndef call_method 15380 # define call_method perl_call_method macro
|
/openbsd-src/gnu/usr.bin/perl/ |
H A D | embed.h | 62 # define perl_call_method(a,b) call_method(a,b) 165 # define call_method(a,b) Perl_call_method(aTHX_ a,b) 166 # define call_method(a,b) Perl_call_method( global() macro
|
H A D | pp_sys.c | 1144 call_method(methname, G_SCALAR); in PP() 1147 /* Can't use call_method here, else this: fileno FOO; tie @a, "FOO" in PP()
|
H A D | pp_ctl.c | 4806 count = call_method(method, G_LIST|G_EVAL); in S_require_file()
|
H A D | sv.c | 16605 call_method("decode", G_SCALAR); 16670 call_method("cat_decode", G_SCALAR);
|
H A D | embed.fnc | 765 AOdp |SSize_t|call_method |NN const char *methname \
|
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/ |
H A D | APItest.xs | 2824 call_method(methname, flags, ...) 2835 i = call_method(methname, flags); in gv_fetchmeth_autoload_type()
|
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/ |
H A D | embed.fnc | 1602 ApdO |I32 |call_method |NN const char* methname|I32 flags
|