Home
last modified time | relevance | path

Searched refs:isa (Results 26 – 50 of 61967) sorted by path

12345678910>>...2479

/dports/archivers/p5-Archive-Any-Lite/Archive-Any-Lite-0.11/t/
H A DAny.t91 ok( $archive->isa('Archive::Any::Lite'), " it's an object" );
/dports/archivers/p5-Archive-Any-Plugin-Rar/Archive-Any-Plugin-Rar-0.02/inc/Module/
H A DAutoInstall.pm50 ? ( UNIVERSAL::isa( $Config, 'HASH' ) ? %{$Config} : @{$Config} )
166 $modules = [ %{$modules} ] if UNIVERSAL::isa( $modules, 'HASH' );
423 if ( UNIVERSAL::isa( $makeflags, 'HASH' ) ) {
/dports/archivers/p5-Archive-Any-Plugin-Rar/Archive-Any-Plugin-Rar-0.02/inc/Module/Install/
H A DBase.pm54 ! $_[0]->admin->isa('Module::Install::Base::FakeAdmin');
/dports/archivers/p5-Archive-Any/Archive-Any-0.0946/t/
H A DAny.t97 ok( $archive->isa('Archive::Any'), " it's an object" );
/dports/archivers/p5-Archive-Peek/Archive-Peek-0.35/lib/Archive/
H A DPeek.pm10 isa => File,
/dports/archivers/p5-Archive-Tar/Archive-Tar-2.40/lib/Archive/
H A DTar.pm235 return $file if eval{ $file->isa(q{IO::Handle}) };
640 if( UNIVERSAL::isa( $file, 'Archive::Tar::File' ) ) {
1074 return $file if UNIVERSAL::isa( $file, 'Archive::Tar::File' );
1538 if( UNIVERSAL::isa( $file,'Archive::Tar::File' ) ) {
/dports/archivers/p5-Archive-Zip/Archive-Zip-1.68/lib/Archive/
H A DZip.pm330 !!eval { ref $_[0] and $_[0]->isa($_[1]) };
/dports/archivers/p5-Compress-LZW/Compress-LZW-0.04/lib/Compress/LZW/
H A DCompressor.pm21 isa => Bool,
28 isa => Type::Tiny->new(
/dports/archivers/p5-Compress-Raw-Bzip2/Compress-Raw-Bzip2-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-Compress-Raw-Lzma/Compress-Raw-Lzma-2.101/lib/Compress/Raw/
H A DLzma.pm736 unless UNIVERSAL::isa($_[0], $objType);
762 unless UNIVERSAL::isa($filt, 'Lzma::Filter');
764 if UNIVERSAL::isa($filt, 'Lzma::Filter::Lzma') && $i < $count -1 ;
/dports/archivers/p5-Compress-Raw-Lzma/Compress-Raw-Lzma-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-Compress-Raw-Zlib/Compress-Raw-Zlib-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-IO-Compress-Lzf/IO-Compress-Lzf-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-IO-Compress-Lzma/IO-Compress-Lzma-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-IO-Compress-Lzop/IO-Compress-Lzop-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/p5-IO-Compress/IO-Compress-2.101/lib/IO/Compress/Base/
H A DCommon.pm116 (UNIVERSAL::isa($_[0],'GLOB') or
117 UNIVERSAL::isa($_[0],'IO::Handle') or
118 UNIVERSAL::isa(\$_[0],'GLOB'))
131 UNIVERSAL::isa(\$_[0], 'SCALAR'));
197 return 'buffer' if UNIVERSAL::isa($_[0], 'SCALAR');
198 return 'array' if UNIVERSAL::isa($_[0], 'ARRAY') && $extended ;
199 return 'hash' if UNIVERSAL::isa($_[0], 'HASH') && $hash ;
200 return 'code' if UNIVERSAL::isa($_[0], 'CODE') && $wantCode ;
510 if @_ == 2 && defined $_[1] && UNIVERSAL::isa($_[1], "IO::Compress::Base::Parameters");
/dports/archivers/p5-IO-Compress/IO-Compress-2.101/t/Test/
H A DBuilder.pm1178 return UNIVERSAL::isa($maybe_fh, 'GLOB') ||
1179 UNIVERSAL::isa($maybe_fh, 'IO::Handle') ||
H A DMore.pm555 my $rslt = eval { $object->isa($class) };
558 if( !UNIVERSAL::isa($object, $class) ) {
1095 return $type if UNIVERSAL::isa($thing, $type);
/dports/archivers/paq/paq-20140131_6/
H A Dzpaq.cpp4617 unsigned* isa; // inverse suffix array for LZ77-SA member in LZBuffer
4700 idx(0), sa(0), isa(0) { in LZBuffer()
4723 isa=&ht[n*(sap==0)]; in LZBuffer()
4756 if (isa) { in fill()
4757 if (sa[isa[i&mask]]!=i) // rebuild ISA in fill()
4760 isa[sa[j]&mask]=j; in fill()
4762 unsigned q=isa[(h+i)&mask]; // location of h+i in SA in fill()
4845 if (isa) in fill()

12345678910>>...2479