Home
last modified time | relevance | path

Searched refs:splitpath (Results 1 – 18 of 18) sorted by relevance

/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Ddata.py35 def splitpath(path): function
99 _, elems = splitpath(filename)
110 _, prefix = splitpath(self._prefix)
117 (_, name), target = splitpath(fname), telems
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Ddata.py35 def splitpath(path): function
99 _, elems = splitpath(filename)
110 _, prefix = splitpath(self._prefix)
117 (_, name), target = splitpath(fname), telems
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Ddata.py35 def splitpath(path): function
99 _, elems = splitpath(filename)
110 _, prefix = splitpath(self._prefix)
117 (_, name), target = splitpath(fname), telems
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Ddata.py35 def splitpath(path): function
99 _, elems = splitpath(filename)
110 _, prefix = splitpath(self._prefix)
117 (_, name), target = splitpath(fname), telems
/external/bc/
Dlocale_install.sh72 splitpath() { function
113 _relpath_splitpath1=`splitpath "$_relpath_path1"`
114 _relpath_splitpath2=`splitpath "$_relpath_path2"`
/external/llvm-project/openmp/runtime/tools/lib/
Dtools.pm581 my ( $vol, undef, undef ) = File::Spec->splitpath( $path );
590 my ( $vol, $dir, undef ) = File::Spec->splitpath( $path );
603 my ( undef, undef, $file ) = File::Spec->splitpath( $path );
612 my ( undef, undef, $file ) = File::Spec->splitpath( $path );
622 my ( undef, undef, $file ) = File::Spec->splitpath( $path );
637 my ( $vol, $dirs ) = File::Spec->splitpath( $path, "no_file" );
651 my ( $vol, $dirs ) = File::Spec->splitpath( $path, "no_file" );
795 my ( $vol, $dir, $file ) = File::Spec->splitpath( $path );
846 … ( my $vol, my $dir, $file ) = File::Spec->splitpath( File::Spec->rel2abs( $orig_path ) );
/external/python/pyfakefs/pyfakefs/tests/
Dfake_filesystem_test.py1217 self.assertEqual(('', ''), self.filesystem.splitpath(''))
1220 self.assertEqual(('', 'ab'), self.filesystem.splitpath('ab'))
1225 self.assertEqual(('', 'a/b'), self.filesystem.splitpath('a/b'))
1228 self.assertEqual(('a', 'b'), self.filesystem.splitpath('a|b'))
1229 self.assertEqual(('a', 'b'), self.filesystem.splitpath('a|||b'))
1230 self.assertEqual(('|a', 'b'), self.filesystem.splitpath('|a||b'))
1231 self.assertEqual(('a|b', 'c'), self.filesystem.splitpath('a|b|c'))
1232 self.assertEqual(('|a|b', 'c'), self.filesystem.splitpath('|a|b|c'))
1235 self.assertEqual(('|', ''), self.filesystem.splitpath('|||'))
1236 self.assertEqual(('|', 'a'), self.filesystem.splitpath('|a'))
[all …]
/external/python/cpython2/Lib/
DCGIHTTPServer.py339 splitpath = ('/' + '/'.join(head_parts), tail_part)
340 collapsed_path = "/".join(splitpath)
/external/toybox/lib/
Dxwrap.c564 splitpath(path, splitpath(temp, &todo)); in xabspath()
566 } else splitpath(path, &todo); in xabspath()
633 tail = splitpath(libbuf, &new); in xabspath()
Dlib.h213 struct string_list **splitpath(char *path, struct string_list **list);
Dlib.c223 struct string_list **splitpath(char *path, struct string_list **list) in splitpath() function
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py1464 def splitpath(self, path): member in FakeFilesystem
2026 parent_directory, child_name = self.splitpath(path)
2109 old_dir, old_name = self.splitpath(old_file_path)
2110 new_dir, new_name = self.splitpath(new_file_path)
2218 parent, file_name = self.splitpath(new_file_path)
2246 dirname, basename = self.splitpath(file_path)
2543 parent_directory, new_file = self.splitpath(file_path)
2653 new_parent_directory, new_basename = self.splitpath(
2749 parent_dir, _ = self.splitpath(dir_name)
2770 head, tail = self.splitpath(dir_name)
[all …]
Dfake_pathlib.py304 path = self.filesystem.splitpath(path)[0]
/external/ImageMagick/PerlMagick/quantum/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
41 my ($vol,$dir,$file) = splitpath($1);
/external/ImageMagick/PerlMagick/default/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
41 my ($vol,$dir,$file) = splitpath($1);
/external/ImageMagick/PerlMagick/
DMakefile.PL.in26 use File::Spec::Functions qw/catfile catdir devnull catpath splitpath/;
41 my ($vol,$dir,$file) = splitpath($1);
/external/python/cpython3/Lib/http/
Dserver.py930 splitpath = ('/' + '/'.join(head_parts), tail_part)
931 collapsed_path = "/".join(splitpath)
/external/python/parse_type/tasks/_vendor/
Dpath.py383 def splitpath(self): member in Path
467 loc, child = prev.splitpath()