Home
last modified time | relevance | path

Searched refs:commonprefix (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/
Dtest_genericpath.py34 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/
Dutil.py4 from os.path import commonprefix
30 prefix = commonprefix(args)
/third_party/skia/tools/svg/
Dsvg_downloader.py23 common_prefix = os.path.commonprefix(lines)
/third_party/node/deps/npm/node_modules/node-gyp/
Dupdate-gyp.py41 prefix = os.path.commonprefix([abs_directory, abs_target])
/third_party/python/Lib/
Dgenericpath.py69 def commonprefix(m): function
Dposixpath.py490 i = len(commonprefix([start_list, path_list]))
/third_party/skia/third_party/externals/harfbuzz/src/
Dgen-arabic-table.py189 names[items[0]] = os.path.commonprefix ([names[items[0]], fields[1]]).strip ()
/third_party/python/Lib/lib2to3/
Dmain.py239 input_base_dir = os.path.commonprefix(args)
/third_party/python/Doc/library/
Dos.path.rst92 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/
Dcommon.py167 prefix_len = len(os.path.commonprefix([path_split, relative_to_split]))
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dcommon.py167 prefix_len = len(os.path.commonprefix([path_split, relative_to_split]))
/third_party/json/tools/cpplint/
Dcpplint.py1607 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/
Drequest.py892 common = posixpath.commonprefix((base[1], test[1]))
/third_party/python/Doc/whatsnew/
D3.5.rst1509 :func:`os.path.commonprefix` function, it always returns a valid
1512 >>> os.path.commonprefix(['/usr/lib', '/usr/local/lib'])
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch1354 "basename","dirname","commonprefix","getsize","getmtime",
/third_party/python/Misc/
DHISTORY19143 - Patch #1105730: Apply the new implementation of commonprefix in posixpath
26496 os.path -- fix semantics of os.path.commonprefix