/openbsd/gnu/usr.bin/perl/lib/Tie/ |
H A D | SubstrHash.t | 6 require Tie::SubstrHash; 10 tie %a, 'Tie::SubstrHash', 3, 3, 3; 49 tie %test, "Tie::SubstrHash", 13, 86, $hashsize; 63 is( Tie::SubstrHash::findgteprime(1), 2 ); 65 is( Tie::SubstrHash::findgteprime(2), 2 ); 67 is( Tie::SubstrHash::findgteprime(5.5), 7 ); 69 is( Tie::SubstrHash::findgteprime(13), 13 ); 73 is( Tie::SubstrHash::findgteprime(114), 127 ); 75 is( Tie::SubstrHash::findgteprime(1000), 1009 ); 77 is( Tie::SubstrHash::findgteprime(1024), 1031 ); [all …]
|
H A D | Scalar.t | 11 use Tie::Scalar; 12 our @ISA = qw( Tie::Scalar ); 25 eval { Tie::Scalar->$method() }; 38 tie $scalar, 'Tie::StdScalar'; 48 tie $scalar, 'Tie::StdScalar', DestroyAction->new(); 83 @NoMethods::ISA = qw [Tie::Scalar]; 109 @HasMethod1::ISA = qw [Tie::Scalar]; 113 @HasMethod2::ISA = qw [Tie::Scalar];
|
H A D | Hash.pm | 1 package Tie::Hash; 245 package Tie::StdHash; 258 package Tie::ExtraHash;
|
H A D | Scalar.pm | 1 package Tie::Scalar; 143 package Tie::StdScalar;
|
H A D | StdHandle.pm | 1 package Tie::StdHandle; 5 use Tie::Handle;
|
/openbsd/gnu/usr.bin/perl/t/re/ |
H A D | reg_nc_tie.t | 58 is(Tie::Hash::NamedCapture::FETCH(undef, undef), undef, 'FETCH with undef'); 59 eval {Tie::Hash::NamedCapture::STORE(undef, undef, undef)}; 61 eval {Tie::Hash::NamedCapture::DELETE(undef, undef)}; 64 eval {Tie::Hash::NamedCapture::CLEAR(undef)}; 66 is(Tie::Hash::NamedCapture::EXISTS(undef, undef), undef, 'EXISTS with undef'); 67 is(Tie::Hash::NamedCapture::FIRSTKEY(undef), undef, 'FIRSTKEY with undef'); 68 is(Tie::Hash::NamedCapture::NEXTKEY(undef, undef), undef, 'NEXTKEY with undef'); 69 is(Tie::Hash::NamedCapture::SCALAR(undef), undef, 'SCALAR with undef'); 84 like($@, qr/Usage: Tie::Hash::NamedCapture::$method\(\Q$error\E\)/,
|
/openbsd/gnu/usr.bin/perl/t/op/ |
H A D | tie.t | 25 use Tie::Hash ; 34 use Tie::Hash ; 49 use Tie::Hash ; 56 use Tie::Hash ; 64 use Tie::Hash ; 72 use Tie::Hash ; 82 use Tie::Hash ; 90 use Tie::Hash ; 99 use Tie::Hash ; 109 use Tie::Hash ; [all …]
|
H A D | avhv.t | 12 require Tie::Array; 14 package Tie::BasicArray; 113 require Tie::Hash; 114 tie %fake, Tie::StdHash;
|
/openbsd/gnu/usr.bin/perl/lib/Tie/Array/ |
H A D | std.t | 9 use Tie::Array; 10 tie @foo,Tie::StdArray; 11 tie @ary,Tie::StdArray; 12 tie @bar,Tie::StdArray;
|
H A D | splice.t | 12 use Tie::Array; 13 tie @a,Tie::StdArray; 14 undef *Tie::StdArray::SPLICE;
|
H A D | stdpush.t | 9 use Tie::Array; 10 tie @x,Tie::StdArray;
|
H A D | push.t | 11 use Tie::Array; 12 @ISA = qw(Tie::Array);
|
/openbsd/gnu/usr.bin/perl/cpan/JSON-PP/t/ |
H A D | 016_tied.t | 11 use Tie::Hash; 12 use Tie::Array; 17 tie my %h, 'Tie::StdHash'; 22 tie my @a, 'Tie::StdArray';
|
H A D | 115_tie_ixhash.t | 14 eval {require Tie::IxHash}; 15 skip "Can't load Tie::IxHash.", 2 if ($@); 18 tie %columns, 'Tie::IxHash';
|
/openbsd/gnu/usr.bin/perl/dist/Safe/ |
H A D | Safe.pm | 135 &Tie::Hash::NamedCapture::FETCH 136 &Tie::Hash::NamedCapture::STORE 137 &Tie::Hash::NamedCapture::DELETE 138 &Tie::Hash::NamedCapture::CLEAR 139 &Tie::Hash::NamedCapture::EXISTS 140 &Tie::Hash::NamedCapture::FIRSTKEY 141 &Tie::Hash::NamedCapture::NEXTKEY 142 &Tie::Hash::NamedCapture::SCALAR 143 &Tie::Hash::NamedCapture::flags
|
/openbsd/gnu/usr.bin/perl/dist/Attribute-Handlers/t/ |
H A D | multi.t | 119 package Tie::Loud; 125 package Tie::Noisy; 132 package Tie::Row::dy; 142 use Attribute::Handlers autotie => { Other::Loud => Tie::Loud, 143 Noisy => Tie::Noisy, 144 UNIVERSAL::Rowdy => Tie::Row::dy,
|
/openbsd/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/ |
H A D | openhan.t | 73 package My::Tie; 74 require Tie::Handle; 75 @My::Tie::ISA = qw(Tie::Handle);
|
H A D | getmagic-once.t | 13 use Tie::Scalar; 14 use base qw(Tie::StdScalar);
|
/openbsd/gnu/usr.bin/perl/dist/Tie-File/ |
H A D | ChangeLog | 7 - undef Tie::File objects before untie-ing arrays 8 - Tie-File: report test timeouts to STDERR 33 - typo fixes for Tie::File 45 - Missing ; in Tie::File 78 correctly. Tie::File now behaves correctly even if you change $\. 84 Tie::File now correctly handles attempts to store undefined values 89 Tie::File will silently repair it. Formerly, it would mangle the file. 97 AUTODEFERMENT: Tie::File will now turn deferred writing on and off
|
/openbsd/gnu/usr.bin/perl/lib/Tie/Handle/ |
H A D | stdhandle_from_handle.t | 10 use Tie::Handle; 14 @ISA = qw(Tie::StdHandle);
|
/openbsd/gnu/usr.bin/perl/dist/Tie-File/t/ |
H A D | 03_longfetch.t | 15 $: = Tie::File::_default_recsep(); 21 use Tie::File;
|
H A D | 24_cache_loop.t | 16 $: = Tie::File::_default_recsep(); 23 use Tie::File;
|
H A D | 06_fixrec.t | 8 $: = Tie::File::_default_recsep(); 13 use Tie::File;
|
/openbsd/gnu/usr.bin/perl/dist/Search-Dict/ |
H A D | Changes | 4 - use Tie::Handle to get Tie::StdHandle for older Perls
|
/openbsd/gnu/usr.bin/perl/cpan/Tie-RefHash/lib/Tie/ |
H A D | RefHash.pm | 1 package Tie::RefHash; # git description: Tie-RefHash-1.39-10-g2cfa4bd 74 use Tie::Hash; 245 Tie::RefHash::Nestable;
|