/openbsd/usr.sbin/pkg_add/OpenBSD/ |
H A D | LibSpec.pm | 32 return $self->{stem}; 55 sub stem($self) subroutine 57 return $self->{stem}; 130 push @{$repo->{$lib->stem}}, $lib; 133 sub find_best($repo, $stem) 137 if (exists $repo->{$stem}) { 138 for my $lib (@{$repo->{$stem}}) { 158 bless { dir => $dir, stem => $stem, major => $major, 214 dir => $dir, stem => $stem, 228 if ($stem =~ m/^(.*)\/([^\/]+)$/o) { [all …]
|
H A D | PackageName.pm | 34 my $stem = $1; 37 return ($stem, @all); 53 my $stem = $1; 58 stem => $stem, 64 stem => $n, 110 sub find($self, $stem) 112 $stem =~ tr/A-Z/a-z/; 126 delete $self->{$stem}; 310 return $o->{stem}; 315 return $o->{stem}.'-*'; [all …]
|
H A D | Search.pm | 88 sub new($class, $stem) 93 if ($stem =~ m/^(.*)\%(.*)/) { 97 return $class->_new($stem); 101 sub _new($class, $stem) 103 if ($stem =~ m/^(.*)\-\-(.*)/) { 107 return bless {"$stem" => 1}, $class; 132 sub _keep($self, $stem) 134 return defined $self->{$stem}; 161 sub _keep($self, $stem) 164 if ($stem =~ /\Q$partial\E/) { [all …]
|
H A D | PackageName.pod | 13 ($stem, $version, @flavors) = OpenBSD::PackageName::splitname($pkgname); 14 $stem = OpenBSD::PackageName::splitstem($pkgname); 16 OpenBSD::PackageName::is_stem($stem) == 1; 19 @candidates = OpenBSD::PackageName::findstem($stem, @pkgnames); 22 @candidates = $h->findstem($stem); 38 split a C<$pkgname> into a C<$stem>, a C<$version> number, and a (possibly 44 short version of C<splitname> that extracts only the C<$stem>. 50 reconstruct the full name from the stem. 52 =item C<OpenBSD::PackageName::findstem($stem, @pkgnames)> 54 look up a C<$stem> into a list of C<@pkgnames>. Return a list of candidates [all …]
|
H A D | Temp.pm | 74 sub fh_file($stem, $cleanup) 86 ($fh, $file) = permanent_file($tempbase, $stem); 109 sub permanent_file($dir, $stem) 111 my $template = "$stem.XXXXXXXXXX"; 122 sub permanent_dir($dir, $stem) 124 my $template = "$stem.XXXXXXXXXX";
|
H A D | OldLibs.pm | 89 my ($stem, $major, $minor, $dir) = $self->parse($libname); 90 if (defined $stem) { 91 $libpatterns->{$stem}->{$dir} = [$major, $minor, $libname]; 108 my ($stem, $major, $minor, $dir) = $self->parse($libname); 109 if (defined $stem) { 110 my $p = $libpatterns->{$stem}->{$dir}; 172 my $stem = OpenBSD::PackageName::splitstem($plist->pkgname); 173 OpenBSD::PackingElement::Conflict->add($splitted, $stem."-*");
|
H A D | PkgCfl.pm | 30 my $stem = OpenBSD::PackageName::splitstem($pkgname); 33 push(@$l, OpenBSD::Search::PkgSpec->new("$stem-*", 1));
|
H A D | SharedLibs.pm | 74 sub find_best($self, $stem) 76 return $self->{repo}->find_best($stem);
|
H A D | Search.pod | 57 finds all packages with a given stem. 61 finds all packages including a partial stem.
|
H A D | PkgInfo.pm | 367 my $stem = $name->{stem}; 368 my $compose = $stem."--".join('-', sort keys %{$name->{flavors}});
|
H A D | UpdateSet.pm | 138 my ($stem, @rest) = OpenBSD::PackageName::splitname($l); 144 push(@stems, $stem);
|
/openbsd/usr.sbin/pkg_add/OpenBSD/LibSpec/ |
H A D | Build.pm | 24 sub new($class, $dir, $stem) 26 bless {dir => $dir, stem => $stem}, $class; 53 if (my ($dir, $stem) = $filename =~ m/^(.*)\/lib([^\/]+)\.a$/o) { 54 return $class->static->new($dir, $stem); 68 my $spec2 = OpenBSD::LibSpec::GT->new($spec->{dir}, $spec->{stem}, 108 if (my ($stem, $strict, $major, $minor) = $string =~ m/^(.*?)(\>?)\=(\d+)\.(\d+)$/o) { 109 return $class->new_object($stem, $strict, $major, $minor); 110 } elsif (($stem, $strict, $major) = $string =~ m/^(.*?)(\>?)\=(\d+)$/o) { 111 return $class->new_object($stem, $strict, $major, 0); 117 sub new_object($class, $stem, $strict, $major, $minor) [all …]
|
/openbsd/usr.sbin/pkg_add/OpenBSD/PackageRepository/ |
H A D | Cache.pm | 51 sub add_stem($self, $stem) 53 $self->{stems}{$stem} = 1; 74 my $stem = OpenBSD::PackageName::splitstem($name); 75 next if $stem =~ m/^\.libs\d*\-/; 76 next if $stem =~ m/^partial\-/; 77 $stem =~ s/\%.*//; # zap branch info 78 $stem =~ s/\-\-.*//; # and set flavors 79 $self->add_stem($stem); 131 my $stem = OpenBSD::PackageName::splitstem($name); 132 if (exists $self->{stems}{$stem}) {
|
/openbsd/regress/usr.sbin/pkg_add/ |
H A D | extract_chunks | 38 my $stem = basename($f, ".tgz"); 44 my $out ="$stem.tar.".sprintf("%04d", $i);
|
H A D | mycreate | 31 $pkgpath = 't/'.$pkgname->{stem};
|
/openbsd/gnu/usr.bin/perl/lib/ |
H A D | Symbol.pm | 155 my($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/; 157 my $stem_symtab = *{$stem}{HASH};
|
/openbsd/gnu/usr.bin/perl/os2/OS2/OS2-REXX/t/ |
H A D | rx_tieydb.t | 21 tie @pib, OS2::REXX, "IB.P"; # bind array to REXX stem variable 23 tie %tib, OS2::REXX, "IB.T."; # bind associative array to REXX stem var
|
/openbsd/gnu/llvm/lld/ELF/ |
H A D | SymbolTable.cpp | 73 StringRef stem = name; in insert() local 76 stem = name.take_front(pos); in insert() 78 auto p = symMap.insert({CachedHashStringRef(stem), (int)symVector.size()}); in insert() 81 if (stem.size() != name.size()) { in insert()
|
/openbsd/gnu/usr.bin/perl/os2/OS2/OS2-REXX/ |
H A D | REXX.pm | 128 my $stem = $self->{Stem}; 135 while (($name) = OS2::REXX::_next($stem)) {
|
H A D | REXX.xs | 445 _next(stem) in _next() argument 446 char * stem in _next() 452 int len = strlen(stem), namelen, valuelen; in _next() 454 fprintf(stderr, "REXXCALL::_next stem='%s'\n", stem); in _next() 467 } while (!rc && memcmp(stem, sv.shvname.strptr, len) != 0); in _next()
|
/openbsd/gnu/usr.bin/perl/dist/Safe/ |
H A D | Safe.pm | 191 my ($stem, $leaf); 195 ($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/; 199 my $stem_symtab = *{$stem}{HASH};
|
/openbsd/gnu/llvm/llvm/tools/llvm-cov/ |
H A D | llvm-cov.cpp | 62 if (sys::path::stem(argv[0]).endswith_insensitive("gcov")) in main()
|
H A D | gcov.cpp | 30 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile)); in reportCoverage() 33 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile)); in reportCoverage()
|
/openbsd/gnu/llvm/llvm/tools/llvm-driver/ |
H A D | llvm-driver.cpp | 50 StringRef Stem = sys::path::stem(ToolName); in findTool()
|
/openbsd/gnu/llvm/lld/Common/ |
H A D | Args.cpp | 94 return sys::path::stem(path); in getFilenameWithoutExe()
|