Searched refs:commonprefix (Results 1 – 16 of 16) sorted by relevance
/third_party/python/Lib/test/ |
D | test_genericpath.py | 34 commonprefix = self.pathmodule.commonprefix 36 commonprefix([]), 40 commonprefix(["/home/swenson/spam", "/home/swen/spam"]), 44 commonprefix(["/home/swen/spam", "/home/swen/eggs"]), 48 commonprefix(["/home/swen/spam", "/home/swen/spam"]), 52 commonprefix(["home:swenson:spam", "home:swen:spam"]), 56 commonprefix([":home:swen:spam", ":home:swen:eggs"]), 60 commonprefix([":home:swen:spam", ":home:swen:spam"]), 65 commonprefix([b"/home/swenson/spam", b"/home/swen/spam"]), 69 commonprefix([b"/home/swen/spam", b"/home/swen/eggs"]), [all …]
|
/third_party/python/Lib/unittest/ |
D | util.py | 4 from os.path import commonprefix 30 prefix = commonprefix(args)
|
/third_party/skia/tools/svg/ |
D | svg_downloader.py | 23 common_prefix = os.path.commonprefix(lines)
|
/third_party/node/deps/npm/node_modules/node-gyp/ |
D | update-gyp.py | 41 prefix = os.path.commonprefix([abs_directory, abs_target])
|
/third_party/python/Lib/ |
D | genericpath.py | 69 def commonprefix(m): function
|
D | posixpath.py | 490 i = len(commonprefix([start_list, path_list]))
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-arabic-table.py | 189 names[items[0]] = os.path.commonprefix ([names[items[0]], fields[1]]).strip ()
|
/third_party/python/Lib/lib2to3/ |
D | main.py | 239 input_base_dir = os.path.commonprefix(args)
|
/third_party/python/Doc/library/ |
D | os.path.rst | 92 if *paths* is empty. Unlike :func:`commonprefix`, this returns a 103 .. function:: commonprefix(list) 117 >>> os.path.commonprefix(['/usr/lib', '/usr/local/lib'])
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | common.py | 167 prefix_len = len(os.path.commonprefix([path_split, relative_to_split]))
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | common.py | 167 prefix_len = len(os.path.commonprefix([path_split, relative_to_split]))
|
/third_party/json/tools/cpplint/ |
D | cpplint.py | 1607 prefix = os.path.commonprefix([root_dir, project_dir]) 1623 prefix = os.path.commonprefix([root_dir, project_dir]) 6875 prefix = os.path.commonprefix([parent, child])
|
/third_party/python/Lib/urllib/ |
D | request.py | 892 common = posixpath.commonprefix((base[1], test[1]))
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1509 :func:`os.path.commonprefix` function, it always returns a valid 1512 >>> os.path.commonprefix(['/usr/lib', '/usr/local/lib'])
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 1354 "basename","dirname","commonprefix","getsize","getmtime",
|
/third_party/python/Misc/ |
D | HISTORY | 19143 - Patch #1105730: Apply the new implementation of commonprefix in posixpath 26496 os.path -- fix semantics of os.path.commonprefix
|