/openbsd/gnu/usr.bin/perl/ext/Pod-Html/lib/Pod/Html/ |
H A D | Util.pm | 147 my $full_path = shift; 148 return '' unless $full_path; 149 return $full_path if $full_path eq '/'; 151 my ($vol, $dirs, $file) = File::Spec->splitpath($full_path); 166 unshift @dirs, '' if File::Spec->file_name_is_absolute($full_path); 168 $full_path = File::Spec::Unix->catfile(File::Spec::Unix->catdir(@dirs), 170 $full_path =~ s|^\/|| if $^O eq 'MSWin32'; # C:/foo works, /C:/foo doesn't 171 $full_path =~ s/\^\././g if $^O eq 'VMS'; # unescape dots 172 return $full_path;
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/ |
H A D | Tar.pm | 485 $entry->full_path ."' at offset $offset" ); 781 my $full_path = $cwd; 783 $full_path = File::Spec->catdir( $full_path, $d ); 788 if( -l $full_path ) { 789 my $to = readlink $full_path; 849 my $fp = $entry->full_path; 1057 return map { $_->full_path } @{$self->_data}; 1089 my $path = $entry->full_path; 1118 if($e->full_path eq $file){ 1355 : $clone->full_path ); [all …]
|
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/ |
H A D | loader.py | 243 def _match_path(self, path, full_path, pattern): argument 252 full_path = os.path.join(start_dir, path) 253 if os.path.isfile(full_path): 257 if not self._match_path(path, full_path, pattern): 260 name = self._get_name_from_path(full_path) 267 getattr(module, '__file__', full_path)) 269 fullpath_noext = os.path.splitext(full_path)[0] 273 os.path.basename(full_path))[0] 274 expected_dir = os.path.dirname(full_path) 281 elif os.path.isdir(full_path): [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/autodie/lib/autodie/ |
H A D | Util.pm | 134 my $full_path = ${pkg_sym}.${sub_name}; 135 my $oldglob = *$full_path; 144 local *alias = *$full_path; 158 *$full_path = $sub_ref;
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_file.cpp | 57 internal_snprintf(full_path, kMaxPathLength, "%s.%s.%zu", path_prefix, in ReopenIfNecessary() 60 internal_snprintf(full_path, kMaxPathLength, "%s.%zu", path_prefix, pid); in ReopenIfNecessary() 63 internal_strlcat(full_path, common_flags()->log_suffix, kMaxPathLength); in ReopenIfNecessary() 66 fd = OpenFile(full_path, WrOnly, &err); in ReopenIfNecessary() 70 WriteToFile(kStderrFd, full_path, internal_strlen(full_path)); in ReopenIfNecessary() 124 return full_path; in GetReportPath()
|
H A D | sanitizer_file.h | 41 char full_path[kMaxPathLength]; member
|
/openbsd/gnu/llvm/compiler-rt/lib/hwasan/scripts/ |
H A D | hwasan_symbolize | 185 full_path = os.path.join(p, name) 186 if os.path.exists(full_path): 187 return full_path 190 full_path = os.path.join(p, "apex/com.google.android." + name[len(apex_prefix):]) 191 if os.path.exists(full_path): 192 return full_path 195 full_path = os.path.join(p, os.path.basename(name)) 196 if os.path.exists(full_path): 197 return full_path
|
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
H A D | test_discovery.py | 162 full_path = os.path.abspath(os.path.normpath('/foo')) 167 self.assertEqual(loader._top_level_dir, full_path) 168 self.assertIn(full_path, sys.path) 332 full_path = os.path.abspath('foo') 342 if full_path in sys.path: 343 sys.path.remove(full_path) 370 self.assertEqual(sys.path[0], full_path)
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/t/ |
H A D | 02_methods.t | 207 for my $test ( $file->full_path, $file ) { 214 my $name = $file->full_path; 354 is( $obj->full_path, $path, 540 $obj->full_path, \@EXPECT_NORMAL ); 549 for my $arg ( $obj, $obj->full_path ) { 553 ok( -e $obj->full_path, " Extracted file exists" ); 554 rm( $obj->full_path ) unless $NO_UNLINK; 564 ok( $tar->$meth( $obj->full_path, $outfile ), 767 is( $file->full_path, $ename, 783 my $path = $file->full_path; [all …]
|
H A D | 04_resolved_issues.t | 89 is( $entry->full_path, $dir.$file, 266 ok( $file->full_path eq $path, 267 " Paths mismatch <" . $file->full_path . "> ne <$path>" );
|
/openbsd/gnu/llvm/llvm/utils/ |
H A D | demangle_tree.py | 165 full_path = os.path.join(root, f) 166 full_path = os.path.normpath(full_path) 167 pending.append(full_path)
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/bin/ |
H A D | ptar | 81 print $f->full_path . $/ if $print;
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | symtab.c | 157 char *full_path = NULL; in lookup_symtab() local 163 full_path = xfullpath (name); in lookup_symtab() 164 make_cleanup (xfree, full_path); in lookup_symtab() 183 if (full_path != NULL) in lookup_symtab() 186 if (fp != NULL && FILENAME_CMP (full_path, fp) == 0) in lookup_symtab() 252 char *full_path = NULL; in lookup_partial_symtab() local 259 full_path = xfullpath (name); in lookup_partial_symtab() 260 make_cleanup (xfree, full_path); in lookup_partial_symtab() 274 if (full_path != NULL) in lookup_partial_symtab() 278 && FILENAME_CMP (full_path, pst->fullname) == 0) in lookup_partial_symtab()
|
/openbsd/gnu/usr.bin/binutils/ld/emultempl/ |
H A D | sunos.em | 234 char *full_path; 319 full_path = xmalloc (dirnamelen + 1 + strlen (entry->d_name) + 1); 320 sprintf (full_path, "%s/%s", dirname, entry->d_name); 321 statval = stat (full_path, &st); 322 free (full_path);
|
H A D | elf32.em | 196 char *full_path; 262 full_path = xmalloc (dirnamelen + 1 + strlen (entry->d_name) + 1); 263 sprintf (full_path, "%s/%s", dirname, entry->d_name); 264 statval = stat (full_path, &st); 265 free (full_path);
|
/openbsd/gnu/usr.bin/binutils-2.17/ld/emultempl/ |
H A D | sunos.em | 234 char *full_path; 319 full_path = xmalloc (dirnamelen + 1 + strlen (entry->d_name) + 1); 320 sprintf (full_path, "%s/%s", dirname, entry->d_name); 321 statval = stat (full_path, &st); 322 free (full_path);
|
H A D | elf32.em | 211 char *full_path; 277 full_path = xmalloc (dirnamelen + 1 + strlen (entry->d_name) + 1); 278 sprintf (full_path, "%s/%s", dirname, entry->d_name); 279 statval = stat (full_path, &st); 280 free (full_path);
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar/ |
H A D | File.pm | 482 sub full_path { subroutine
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | dotest.py | 718 full_path = seven.get_command_output('xcrun -sdk %s --show-sdk-path' % sdk) 719 basename = os.path.basename(full_path)
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/IPC/Driver/ |
H A D | Files.t | 530 …like(delete $got[0]->{full_path}, qr{^.+\Q$hid\E${sep}123${sep}456${sep}789${sep}Event${sep}Type${… 534 "Apart from full_path we get entire parsed filename"
|
/openbsd/gnu/usr.bin/perl/Porting/ |
H A D | core-cpan-diff | 736 push @files, $file->full_path;
|