Searched refs:normalize_path (Results 1 – 8 of 8) sorted by relevance
/external/curl/tests/ |
D | pathhelp.pm | 129 sub normalize_path; 357 return normalize_path($path); 368 return normalize_path($w32drive . $path); 386 $path = normalize_path($path); 461 $path = normalize_path($path); 486 $path = normalize_path($path); 502 $path = normalize_path($w32drive . $path); 523 return normalize_path($path); 534 sub normalize_path { subroutine 659 return normalize_path($res);
|
/external/python/setuptools/setuptools/command/ |
D | develop.py | 10 from pkg_resources import Distribution, PathMetadata, normalize_path 66 target = normalize_path(self.egg_base) 67 egg_path = normalize_path(os.path.join(self.install_dir, 98 resolved = normalize_path( 101 if resolved != normalize_path(os.curdir): 104 " installation directory", resolved, normalize_path(os.curdir)) 115 build_path = normalize_path(bpy_cmd.build_lib)
|
D | easy_install.py | 58 yield_lines, normalize_path, resource_string, ensure_directory, 304 normpath = map(normalize_path, sys.path) 314 elif normalize_path(d) not in normpath: 319 self.all_site_dirs.append(normalize_path(d)) 324 for path_item in self.install_dir, normalize_path(self.script_dir): 447 instdir = normalize_path(self.install_dir) 478 if instdir not in map(normalize_path, _pythonpath()): 683 os.path.dirname(normalize_path(download)) == 684 normalize_path(self.always_copy_from) 1097 if self.install_dir not in map(normalize_path, sys.path): [all …]
|
D | test.py | 14 from pkg_resources import (resource_listdir, resource_exists, normalize_path, 138 build_path = normalize_path(bpy_cmd.build_lib) 160 project_path = normalize_path(ei_cmd.egg_base)
|
/external/python/setuptools/setuptools/tests/ |
D | test_easy_install.py | 30 from pkg_resources import normalize_path, working_set 126 path = normalize_path('/setuptools/test/site-packages') 245 location = pkg_resources.normalize_path(location)
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 2219 def normalize_path(filename): function 2228 _cache[filename] = result = normalize_path(filename) 2783 loc = normalize_path(self.location) 2791 if fn and (normalize_path(fn).startswith(loc) or
|
/external/python/setuptools/setuptools/ |
D | package_index.py | 17 CHECKOUT_DIST, Distribution, BINARY_DIST, normalize_path, SOURCE_DIST, 144 normalize_path(filename), os.path.basename(filename), metadata
|
/external/python/setuptools/docs/ |
D | pkg_resources.txt | 911 of saying ``Distribution.from_location(normalize_path(filename), 1671 ``normalize_path(path)`` 1844 should always be normalized using ``pkg_resources.normalize_path()``; all
|