Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 20 of 20) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/lib/Pod/Html/
H A DUtil.pm147 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;
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/
H A DTar.pm184 print $f->data . "\t" . $f->full_path . $/;
485 $entry->full_path ."' at offset $offset" );
502 $entry->full_path ."' at offset $offset" );
651 map { $_->full_path, $_ } @{$self->_data}
678 $self->_error(q[Could not extract ']. $entry->full_path .q['] );
719 my $name = defined $alt ? $alt : $entry->full_path;
740 q[Entry ']. $entry->full_path .q[' is an absolute path. ].
769 q[Entry ']. $entry->full_path .q[' is attempting to leave ].
781 my $full_path = $cwd;
783 $full_path
[all...]
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dloader.py243 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-src/gnu/usr.bin/perl/cpan/autodie/lib/autodie/
H A DUtil.pm134 my $full_path = ${pkg_sym}.${sub_name};
135 my $oldglob = *$full_path;
140 # For some reason this local *alias = *$full_path triggers an
144 local *alias = *$full_path;
158 *$full_path = $sub_ref;
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.cpp57 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 Dsanitizer_file.h41 char full_path[kMaxPathLength]; member
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/scripts/
H A Dhwasan_symbolize185 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-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_discovery.py162 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-src/gnu/usr.bin/perl/cpan/Archive-Tar/t/
H A D02_methods.t207 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;
562 my $outfile = File::Spec->catfile( $outpath, $$ ); #$obj->full_path );
564 ok( $tar->$meth( $obj->full_path, $outfile ),
764 get_expect_name_and_contents( $file->full_path,
[all...]
H A D04_resolved_issues.t89 is( $entry->full_path, $dir.$file,
266 ok( $file->full_path eq $path,
267 " Paths mismatch <" . $file->full_path . "> ne <$path>" );
/openbsd-src/gnu/llvm/llvm/utils/
H A Ddemangle_tree.py165 full_path = os.path.join(root, f)
166 full_path = os.path.normpath(full_path)
167 pending.append(full_path)
/openbsd-src/gnu/usr.bin/perl/cpan/Archive-Tar/bin/
H A Dptar81 print $f->full_path . $/ if $print;
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dsymtab.c157 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-src/gnu/usr.bin/binutils/ld/emultempl/
H A Dsunos.em234 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 Delf32.em196 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-src/gnu/usr.bin/binutils-2.17/ld/emultempl/
H A Dsunos.em234 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 Delf32.em211 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-src/gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar/
H A DFile.pm475 =head2 $path = $file->full_path
482 sub full_path { subroutine
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddotest.py718 full_path = seven.get_command_output('xcrun -sdk %s --show-sdk-path' % sdk)
719 basename = os.path.basename(full_path)
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/IPC/Driver/
H A DFiles.t530 like(delete $got[0]->{full_path}, qr{^.+\Q$hid\E${sep}123${sep}456${sep}789${sep}Event${sep}Type${sep}Foo\.ready$}, "Got full path");
534 "Apart from full_path we get entire parsed filename"