Home
last modified time | relevance | path

Searched refs:overload (Results 1 – 25 of 261) sorted by relevance

1234567891011

/openbsd-src/gnu/usr.bin/perl/lib/
H A Doverloading.t11 use overload (
15 cos => sub { "far side of overload table" },
28 is( cos($x), "far side of overload table", "cosinusfies" );
32 is( "$x", overload::StrVal($x), "no stringification" );
33 is( "$y", overload::StrVal($y), "no stringification of qr//" );
39 is( "$x", overload::StrVal($x), "no stringification" );
40 is( "$y", overload::StrVal($y), "no stringification of qr//" );
49 is( "$x", overload::StrVal($x), "no stringification" );
50 is( "$y", overload::StrVal($y), "no stringification of qr//" );
52 is( cos($x), "far side of overload table", "cosinusfies" );
[all …]
H A Doverload.t37 use overload (
120 eval q[ package Oscalar; use overload ('++' => sub { $ {$_[0]}++;$_[0] } ) ];
147 eval q[package Oscalar; use overload ('++' => sub { $ {$_[0]} += 2; $_[0] } ) ];
182 eval q[ package Oscalar; use overload ('=' => sub {$main::copies++;
228 eval q[package Oscalar; use overload ('+=' => sub {$ {$_[0]} += 3*$_[1];
265 use overload ('x' => sub {new Oscalar ( $_[2] ? "_.$_[1]._" x $ {$_[0]}
273 use overload ('.' => sub {new Oscalar ( $_[2] ?
293 # Here we test that both "no overload" and
296 eval "package Oscalar; no overload '.'";
316 eval "package Oscalar; sub comple; use overload '~'
[all...]
H A Doverloading.pm13 map { exists $overload::numbers::names{"($_"}
14 ? $overload::numbers::names{"($_"}
H A Doverload64.t22 use overload '0+' => sub { ${$_[0]} += 1; $ii },
89 use overload '0+' => sub { ${$_[0]} += 1; -$ii },
135 use overload
221 use overload '0+' => sub { $_[0][0] }, fallback => 1;
/openbsd-src/usr.sbin/dhcpd/
H A Doptions.c275 int overload, /* Overload flags that may be set. */ in cons_options() argument
316 if (overload & 1) in cons_options()
318 if (overload & 2) in cons_options()
321 overload = 0; /* Don't use overload buffers for bootp! */ in cons_options()
345 priority_list, overload, terminate); in cons_options()
356 if (overload & 1) { in cons_options()
360 if (overload & 2) in cons_options()
399 struct tree_cache **options, unsigned char *priority_list, int overload, in store_options() argument
407 overload &= 3; /* Only consider valid bits. */ in store_options()
410 second_cutoff = cutoff + ((overload & 1) ? DHCP_FILE_LEN : 0); in store_options()
[all …]
/openbsd-src/gnu/usr.bin/perl/t/re/
H A Doverload.t18 use overload '""' => sub {$TAG};
42 use overload q{""} => sub {
65 overload::constant qr => sub {
80 use overload q{""} => sub {
92 use overload q{""} => sub {
104 use overload q{""} => sub {
212 use overload 'qr' => sub { return qr/a/ };
232 use overload
247 overload::constant qr => sub { bless [ $_[0] ], 'OL_MOD' };
/openbsd-src/gnu/usr.bin/perl/t/lib/
H A Doverload_fallback.t11 use overload '""' => sub { 'stringvalue' }, fallback => 1;
20 use overload '+' => sub { die "unused"; };
28 use overload
42 use overload '${}', 'fallback';
43 no overload '${}', 'fallback';
46 ok($warned == 0, 'no overload should not warn');
/openbsd-src/gnu/usr.bin/perl/dist/Carp/t/
H A Dvivify_stash.t17 # Autovivify $::{"overload::"}
18 () = \$::{"overload::"};
23 # overload:: glob without hash
24 # Clear overload quoted so it happens to the runtime stash.
25 { no strict 'refs'; undef *{"overload::"} }
H A DCarp_overloadless.t8 # test that enabling overload without loading overload.pm does not trigger infinite recursion
H A DCarp_overload.t16 "Stringable object not overload stringified");
52 use overload
73 "TRACE:" . $self; # use string overload
H A Dvivify_gv.t6 our $has_strval; BEGIN { $has_strval = exists($overload::{"StrVal"}); }
15 print !(exists($overload::{"StrVal"}) xor $has_sv2obj) ? "" : "not ", "ok 4\n";
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A D113_overloaded_eq.t31 use overload (
45 use overload (
52 return overload::StrVal($_[0]);
58 use overload 'eq' => sub { $_[0]->{v} eq $_[1] }, '""' => sub { $_[0]->{v} }, fallback => 1;
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dconcat2.t18 { package o; use overload '""' => sub { $_[0][0] } }
31 use overload '.' => sub { push @a, \$_[1]; $_[0] };
53 use overload q[""] => sub { ::canonpath("tmp") };
H A Doverload_integer.t16 use overload;
20 overload::constant 'integer' => sub { return shift };
H A Dhexfp.t283 use overload;
284 BEGIN { overload::constant float => sub { return eval $_[0]; }; }
289 use overload;
290 BEGIN { overload::constant float => sub { return eval $_[0]; }; }
H A Dfiletest.t168 use overload
180 use overload q/""/ => sub { $over = 1; "TEST" };
185 use overload
194 use overload
/openbsd-src/gnu/usr.bin/perl/t/lib/croak/
H A Dtoke205 use overload;
206 BEGIN { overload::constant integer => sub {}; undef *^H }
213 use overload;
214 BEGIN { overload::constant float => sub {}; undef *^H }
221 use overload;
222 BEGIN { overload::constant binary => sub {}; undef *^H }
229 use overload;
230 BEGIN { overload::constant q => sub {}; undef *^H }
240 use overload;
241 BEGIN { overload
[all...]
/openbsd-src/gnu/usr.bin/perl/
H A Doverload.inc3 * overload.inc
12 * This file is built by regen/overload.pl.
102 overload.pm. */
/openbsd-src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/
H A Duniq.t142 use overload '""' => sub { return $_[0]->{str} };
160 use overload '""' => sub { "1" . ( "0"x100 ) },
176 use overload '""' => sub { "SAME" };
H A Dsum.t44 use overload
69 use overload
/openbsd-src/regress/sbin/pfctl/
H A Dpf89.in21 (max-src-conn 100, max-src-conn-rate 10/5, overload <bad> flush)
24 (max-src-conn 1000, max-src-conn-rate 1000/5, overload <bad> \
H A Dpf89.ok10 …ate state (source-track rule, max-src-conn 100, max-src-conn-rate 10/5, overload <bad> flush, src.…
11 … state (source-track rule, max-src-conn 1000, max-src-conn-rate 1000/5, overload <bad> flush globa…
/openbsd-src/gnu/usr.bin/perl/dist/Storable/t/
H A Doverload.t27 use overload
59 use overload
/openbsd-src/gnu/gcc/gcc/config/sh/
H A Dsymbian.c453 tree overload; in sh_symbian_handle_dll_attribute() local
455 for (overload = OVL_CHAIN (node); overload; overload = OVL_CHAIN (overload)) in sh_symbian_handle_dll_attribute()
459 tree function = OVL_CURRENT (overload); in sh_symbian_handle_dll_attribute()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/
H A DREADME17 overload Tests for overload resolution and conversions.

1234567891011