| /openbsd-src/gnu/usr.bin/perl/t/lib/ |
| H A D | overload_fallback.t | 11 use overload '""' => sub { 'stringvalue' }, fallback => 1; 15 ok ($x eq 'stringvalue', 'fallback worked'); 23 ok (eval {$x eq 'stringvalue'}, 'fallback worked again'); 31 fallback => 1; 42 use overload '${}', 'fallback'; 43 no overload '${}', 'fallback';
|
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | h2xs.t | 86 Writing $name/fallback/const-c.inc 87 Writing $name/fallback/const-xs.inc 99 Writing $name/fallback/const-c.inc 100 Writing $name/fallback/const-xs.inc 112 Writing $name/fallback/const-c.inc 113 Writing $name/fallback/const-xs.inc 125 Writing $name/fallback/const-c.inc 126 Writing $name/fallback/const-xs.inc 147 Writing $name/fallback/const-c.inc 148 Writing $name/fallback/const-xs.inc
|
| /openbsd-src/usr.sbin/unbound/testcode/ |
| H A D | unitauth.c | 750 struct query_info** qinfo, int* fallback, uint8_t** dp_nm, in q_ans_parse() argument 758 *fallback = 0; /* default fallback value */ in q_ans_parse() 760 *fallback = 1; in q_ans_parse() 907 int ret, fallback = 0; in q_ans_query() local 913 ret = auth_zones_lookup(az, qinfo, region, &msg, &fallback, dp_nm, in q_ans_query() 921 (ret?"ok":"fail"), (fallback?" fallback":""), ans_str); in q_ans_query() 937 if(expected_fallback && !fallback) { in q_ans_query() 939 } else if(!expected_fallback && fallback) { in q_ans_query() 942 unit_assert( (expected_fallback&&fallback) || in q_ans_query() 943 (!expected_fallback&&!fallback)); in q_ans_query() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/ |
| H A D | MakeMaker.pm | 463 my $fallback; 465 $fallback = sprintf "%f", $_[0]; 467 ($fallback) = $_[0] ? ($_[0] =~ /^([0-9.]+)/) : 0; 468 $fallback += 0; 469 carp "Unparsable version '$_[0]' for prerequisite $_[1] treated as $fallback"; 471 version->new($fallback); 480 my $fallback = 0; 489 $fallback = sprintf "%f", $version; 491 ($fallback) = $version ? ($version =~ /^([0-9.]+)/) : 0; 492 $fallback += 0; [all …]
|
| /openbsd-src/sys/dev/pci/drm/amd/amdgpu/ |
| H A D | amdgpu_res_cursor.h | 63 goto fallback; in amdgpu_res_first() 77 goto fallback; in amdgpu_res_first() 104 goto fallback; in amdgpu_res_first() 109 fallback: in amdgpu_res_first()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/ |
| H A D | 113_overloaded_eq.t | 34 fallback => 1, 48 fallback => 1, 58 use overload 'eq' => sub { $_[0]->{v} eq $_[1] }, '""' => sub { $_[0]->{v} }, fallback => 1;
|
| /openbsd-src/gnu/llvm/clang/utils/ |
| H A D | CaptureCmd | 38 fallback = os.getenv('CAPTURE_CMD_FALLBACK') 57 if fallback: 65 os.execv(fallback, sys.argv)
|
| /openbsd-src/gnu/usr.bin/perl/ext/PerlIO-encoding/t/ |
| H A D | fallback.t | 29 $PerlIO::encoding::fallback = Encode::PERLQQ; 42 $PerlIO::encoding::fallback = Encode::HTMLCREF; 72 $PerlIO::encoding::fallback = Encode::WARN_ON_ERR;
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | overload.t | 45 fallback => 1; 84 fallback => 1; 96 fallback => 1; 108 fallback => 1;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/t/ |
| H A D | Unicode.t | 33 my $fallback = "$dankogai\x{fffd}\x{fffd}"; 75 is(decode('UCS-2BE', $n_16be), $fallback, "decode UCS-2BE: fallback"); 76 is(decode('UCS-2LE', $n_16le), $fallback, "decode UCS-2LE: fallback"); 81 is(encode('UCS-2BE', $nasty), $f_16be, "encode UCS-2BE: fallback"); 82 is(encode('UCS-2LE', $nasty), $f_16le, "encode UCS-2LE: fallback");
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Sys-Syslog/ |
| H A D | Makefile.PL | 189 my $fallback = File::Spec->catfile('fallback', $file); 190 copy($fallback, $file) or die "fatal: Can't copy $fallback to $file: $!";
|
| /openbsd-src/gnu/usr.bin/perl/dist/Carp/t/ |
| H A D | stack_after_err.t | 24 [ 'StrVal fallback in the presence of UNIVERSAL::isa', 28 [ 'StrVal fallback in the presence of UNIVERSAL::can', 32 [ 'StrVal fallback in the presence of UNIVERSAL::can/isa',
|
| /openbsd-src/etc/examples/ |
| H A D | relayd.conf | 21 table <fallback> { 127.0.0.1 } 33 forward to <fallback> check icmp
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
| H A D | accept05.t | 52 print "# extending but not accepted (so hitting fallback)\n"; 66 print "# extending to one-letter accepted (not hitting fallback)\n"; 80 print "# extending to many-letter accepted (not hitting fallback)\n"; 94 print "# extending to :-containing, many-letter accepted (not hitting fallback)\n"; 109 print "# extending to _:-0-9-containing, many-letter accepted (not hitting fallback)\n";
|
| /openbsd-src/usr.sbin/btrace/ |
| H A D | ksyms.c | 189 goto fallback; in kelf_snprintsym() 194 goto fallback; in kelf_snprintsym() 204 fallback: in kelf_snprintsym()
|
| /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
| H A D | overload.t | 106 use overload q(0+) => sub { return $_[0]->val }, fallback=>0; 112 use overload q(0+)=>sub { return $_[0]->val }, fallback=>1;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/ |
| H A D | sum.t | 47 fallback => 1; 72 fallback => 1;
|
| H A D | product.t | 63 fallback => 1; 88 fallback => 1;
|
| /openbsd-src/gnu/llvm/llvm/docs/GlobalISel/ |
| H A D | index.rst | 88 For the initial FastISel replacement, we intend to fallback to SelectionDAG on 94 Still, supporting all IR (via a complete legalizer) and avoiding the fallback 99 We considered never having a fallback to SelectionDAG, instead deciding early
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | overload.inc | 98 /* Names kept in the symbol table. fallback => "()", the rest has 103 "()", /* fallback */
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
| H A D | DeferredCode.pm | 6 use overload fallback => 1, map { ($_ => 'run') } qw/
|
| /openbsd-src/gnu/usr.bin/perl/dist/Storable/t/ |
| H A D | HAS_OVERLOAD.pm | 4 '""' => sub { ${$_[0]} }, fallback => 1;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON/PP/ |
| H A D | Boolean.pm | 11 fallback => 1,
|
| /openbsd-src/gnu/usr.bin/perl/ext/PerlIO-encoding/ |
| H A D | encoding.pm | 16 our $fallback = Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::ONLY_PRAGMA_WARNINGS(); 33 $PerlIO::encoding::fallback = FB_PERLQQ; 44 When the layer is pushed, the current value of C<$PerlIO::encoding::fallback>
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/ |
| H A D | BigFloat.pm | 2201 my $fallback = 0; 2207 # no rounding at all, so must use fallback 2213 $fallback = 1; # to clear a/p afterwards 2285 if ($fallback) { 2296 if ($fallback) { 2634 my $fallback = 0; 2638 # no rounding at all, so must use fallback 2645 $fallback = 1; # to clear a/p afterwards 2712 if ($fallback) { 2747 my $fallback [all...] |