Searched refs:_relpath (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | find.py | 23 _relpath=os.path.relpath, argument 25 filename = _relpath(filename, REPO_ROOT)
|
/external/python/cpython2/Lib/unittest/ |
D | loader.py | 224 _relpath = os.path.relpath(path, self._top_level_dir) 225 assert not os.path.isabs(_relpath), "Path must be within the project" 226 assert not _relpath.startswith('..'), "Path must be within the project" 228 name = _relpath.replace(os.path.sep, '.')
|
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/ |
D | loader.py | 232 _relpath = relpath(path, self._top_level_dir) 233 assert not os.path.isabs(_relpath), "Path must be within the project" 234 assert not _relpath.startswith('..'), "Path must be within the project" 236 name = _relpath.replace(os.path.sep, '.')
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 369 _relpath = os.path.relpath(path, self._top_level_dir) 370 assert not os.path.isabs(_relpath), "Path must be within the project" 371 assert not _relpath.startswith('..'), "Path must be within the project" 373 name = _relpath.replace(os.path.sep, '.')
|