/external/python/cpython3/Lib/ |
D | shutil.py | 117 if not follow_symlinks and os.path.islink(src): 133 if not follow_symlinks and os.path.islink(src) and os.path.islink(dst): 184 follow = follow_symlinks or not (os.path.islink(src) and os.path.islink(dst)) 323 if os.path.islink(srcname): 365 if os.path.islink(path): 369 onerror(os.path.islink, path, sys.exc_info()) 431 onerror(os.path.islink, fullname, sys.exc_info()) 490 onerror(os.path.islink, path, sys.exc_info()) 546 if os.path.islink(src):
|
/external/python/cpython3/Lib/venv/ |
D | __init__.py | 80 if os.path.islink(fn) or os.path.isfile(fn): 96 elif os.path.islink(d) or os.path.isfile(d): 175 if not os.path.islink(dst): # can't link to itself! 200 if not os.path.islink(path): 208 if not os.path.islink(path):
|
/external/libcxx/test/support/ |
D | filesystem_dynamic_test_helper.py | 32 if not os.path.islink(root_p): 36 if os.path.islink(p) or not os.path.isdir(p):
|
/external/python/cpython2/Lib/plat-riscos/ |
D | riscospath.py | 237 def islink(p): function 243 ismount= islink 377 if isdir(name) and not islink(name):
|
/external/python/cpython2/Tools/scripts/ |
D | pathfix.py | 55 elif os.path.islink(arg): 79 if os.path.islink(fullname): pass
|
D | checkappend.py | 66 if os.path.isdir(file) and not os.path.islink(file): 73 not os.path.islink(fullname))
|
D | methfix.py | 46 elif os.path.islink(arg): 70 if os.path.islink(fullname): pass
|
D | classfix.py | 49 elif os.path.islink(arg): 73 if os.path.islink(fullname): pass
|
D | lll.py | 14 if os.path.islink(full):
|
D | cleanfuture.py | 79 if os.path.isdir(file) and not os.path.islink(file): 86 not os.path.islink(fullname))
|
/external/python/cpython2/Lib/ |
D | macpath.py | 99 def islink(s): function 183 if isdir(name) and not islink(name):
|
D | posixpath.py | 132 def islink(path): function 184 if islink(path): 400 if not islink(newpath):
|
/external/python/cpython3/Tools/scripts/ |
D | pathfix.py | 60 elif os.path.islink(arg): 84 if os.path.islink(fullname): pass
|
D | lll.py | 14 if os.path.islink(full):
|
/external/python/cpython2/Demo/scripts/ |
D | eqfix.py | 49 elif os.path.islink(arg): 73 if os.path.islink(fullname): pass
|
/external/python/cpython2/Demo/pdist/ |
D | FSProxy.py | 73 if os.path.islink(name): return 0 135 def islink(self, name): member in FSProxyLocal 136 return self.visible(name) and os.path.islink(name)
|
/external/python/cpython3/Lib/distutils/ |
D | dir_util.py | 147 if preserve_symlinks and os.path.islink(src_name): 172 if os.path.isdir(real_f) and not os.path.islink(real_f):
|
/external/python/cpython2/Lib/distutils/ |
D | dir_util.py | 151 if preserve_symlinks and os.path.islink(src_name): 176 if os.path.isdir(real_f) and not os.path.islink(real_f):
|
/external/autotest/client/bin/ |
D | local_host.py | 94 if os.path.islink(path): 136 if preserve_symlinks and os.path.islink(source):
|
/external/python/cpython2/Lib/test/ |
D | test_posixpath.py | 102 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False) 107 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False) 110 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True) 112 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True)
|
/external/skqp/tools/skqp/ |
D | setup_resources | 15 if os.path.isdir(dst) and not os.path.islink(dst):
|
/external/skia/tools/skqp/ |
D | setup_resources | 15 if os.path.isdir(dst) and not os.path.islink(dst):
|
/external/webrtc/ |
D | setup_links.py | 357 if os.path.islink(link_path) or sys.platform.startswith('win'): 416 if os.path.exists(link_path) or os.path.islink(link_path): 417 if os.path.islink(link_path):
|
/external/libyuv/files/ |
D | setup_links.py | 336 if os.path.islink(link_path) or sys.platform.startswith('win'): 395 if os.path.exists(link_path) or os.path.islink(link_path): 396 if os.path.islink(link_path):
|
/external/autotest/utils/ |
D | reindent.py | 95 if os.path.isdir(file) and not os.path.islink(file): 102 not os.path.islink(fullname))
|