Home
last modified time | relevance | path

Searched refs:islink (Results 1 – 25 of 115) sorted by relevance

12345

/external/python/cpython3/Lib/
Dshutil.py117 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__.py80 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/
Dfilesystem_dynamic_test_helper.py32 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/
Driscospath.py237 def islink(p): function
243 ismount= islink
377 if isdir(name) and not islink(name):
/external/python/cpython2/Tools/scripts/
Dpathfix.py55 elif os.path.islink(arg):
79 if os.path.islink(fullname): pass
Dcheckappend.py66 if os.path.isdir(file) and not os.path.islink(file):
73 not os.path.islink(fullname))
Dmethfix.py46 elif os.path.islink(arg):
70 if os.path.islink(fullname): pass
Dclassfix.py49 elif os.path.islink(arg):
73 if os.path.islink(fullname): pass
Dlll.py14 if os.path.islink(full):
Dcleanfuture.py79 if os.path.isdir(file) and not os.path.islink(file):
86 not os.path.islink(fullname))
/external/python/cpython2/Lib/
Dmacpath.py99 def islink(s): function
183 if isdir(name) and not islink(name):
Dposixpath.py132 def islink(path): function
184 if islink(path):
400 if not islink(newpath):
/external/python/cpython3/Tools/scripts/
Dpathfix.py60 elif os.path.islink(arg):
84 if os.path.islink(fullname): pass
Dlll.py14 if os.path.islink(full):
/external/python/cpython2/Demo/scripts/
Deqfix.py49 elif os.path.islink(arg):
73 if os.path.islink(fullname): pass
/external/python/cpython2/Demo/pdist/
DFSProxy.py73 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/
Ddir_util.py147 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/
Ddir_util.py151 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/
Dlocal_host.py94 if os.path.islink(path):
136 if preserve_symlinks and os.path.islink(source):
/external/python/cpython2/Lib/test/
Dtest_posixpath.py102 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/
Dsetup_resources15 if os.path.isdir(dst) and not os.path.islink(dst):
/external/skia/tools/skqp/
Dsetup_resources15 if os.path.isdir(dst) and not os.path.islink(dst):
/external/webrtc/
Dsetup_links.py357 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/
Dsetup_links.py336 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/
Dreindent.py95 if os.path.isdir(file) and not os.path.islink(file):
102 not os.path.islink(fullname))

12345