/external/python/cpython2/Lib/ |
os2emxpath.py | 19 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 59 def splitunc(p): function 112 unc, rest = splitunc(path)
|
ntpath.py | 21 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 138 def splitunc(p): function 234 unc, rest = splitunc(path) 505 prefix, rest = splitunc(abs)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
os2emxpath.py | 18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 58 def splitunc(p): function 111 unc, rest = splitunc(path)
|
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 131 def splitunc(p): function 224 unc, rest = splitunc(path) 488 prefix, rest = splitunc(abs)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
os2emxpath.py | 18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 58 def splitunc(p): function 111 unc, rest = splitunc(path)
|
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 131 def splitunc(p): function 224 unc, rest = splitunc(path) 488 prefix, rest = splitunc(abs)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os2emxpath.py | 18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 58 def splitunc(p): function 111 unc, rest = splitunc(path)
|
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 131 def splitunc(p): function 224 unc, rest = splitunc(path) 488 prefix, rest = splitunc(abs)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os2emxpath.py | 18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 58 def splitunc(p): function 111 unc, rest = splitunc(path)
|
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 131 def splitunc(p): function 224 unc, rest = splitunc(path) 488 prefix, rest = splitunc(abs)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/ |
data.py | 39 splitunc = _os.path.splitunc 43 drive, path = splitunc(path)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/ |
data.py | 39 splitunc = _os.path.splitunc 43 drive, path = splitunc(path)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
data.py | 39 splitunc = _os.path.splitunc 43 drive, path = splitunc(path)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/ |
data.py | 39 splitunc = _os.path.splitunc 43 drive, path = splitunc(path)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
136 def splitunc(p):
function 229 unc, rest = splitunc(path)
493 prefix, rest = splitunc(abs)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
ntpath.py | 20 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
131 def splitunc(p):
function 224 unc, rest = splitunc(path)
488 prefix, rest = splitunc(abs)
|
/external/python/cpython2/Lib/test/ |
test_ntpath.py | 56 tester('ntpath.splitunc("c:\\foo\\bar")', 58 tester('ntpath.splitunc("c:/foo/bar")', 60 tester('ntpath.splitunc("\\\\conky\\mountpoint\\foo\\bar")', 62 tester('ntpath.splitunc("//conky/mountpoint/foo/bar")', 64 tester('ntpath.splitunc("\\\\\\conky\\mountpoint\\foo\\bar")', 66 tester('ntpath.splitunc("///conky/mountpoint/foo/bar")', 68 tester('ntpath.splitunc("\\\\conky\\\\mountpoint\\foo\\bar")', 70 tester('ntpath.splitunc("//conky//mountpoint/foo/bar")', 73 self.assertEqual(ntpath.splitunc(u'//conky/MOUNTPO%cNT/foo/bar' % 0x0130), 311 attributes = ['relpath', 'splitunc'] [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
ntpath.py | 34 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
111 # to splitdrive() and splitunc().
156 def splitunc(p):
function 252 unc, rest = splitunc(path)
523 prefix, rest = splitunc(abs)
|
/external/python/cpython3/Lib/test/ |
test_ntpath.py | 77 ntpath.splitunc('') 79 tester('ntpath.splitunc("c:\\foo\\bar")', 81 tester('ntpath.splitunc("c:/foo/bar")', 83 tester('ntpath.splitunc("\\\\conky\\mountpoint\\foo\\bar")', 85 tester('ntpath.splitunc("//conky/mountpoint/foo/bar")', 87 tester('ntpath.splitunc("\\\\\\conky\\mountpoint\\foo\\bar")', 89 tester('ntpath.splitunc("///conky/mountpoint/foo/bar")', 91 tester('ntpath.splitunc("\\\\conky\\\\mountpoint\\foo\\bar")', 93 tester('ntpath.splitunc("//conky//mountpoint/foo/bar")', 95 self.assertEqual(ntpath.splitunc('//conky/MOUNTPO?NT/foo/bar') [all...] |
/external/python/cpython3/Lib/ |
ntpath.py | 18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep", 173 def splitunc(p): function 185 warnings.warn("ntpath.splitunc is deprecated, use ntpath.splitdrive instead",
|