HomeSort by relevance Sort by last modified time
    Searched refs:islink (Results 1 - 25 of 46) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 11 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
98 def islink(s): function
182 if isdir(name) and not islink(name):
196 # realpath is a no-op on systems without islink support
posixpath.py 30 "getatime","getctime","islink","exists","lexists","isdir","isfile",
139 def islink(path): function
191 if islink(path):
392 if not islink(newpath):
os2emxpath.py 11 from ntpath import (expanduser, expandvars, isabs, islink, splitdrive, namespace
16 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
156 # realpath is a no-op on systems without islink support
tabnanny.py 84 if os.path.isdir(file) and not os.path.islink(file):
91 not os.path.islink(fullname) or
os.py 266 islink, join, isdir = path.islink, path.join, path.isdir
293 if followlinks or not islink(new_path):
shutil.py 185 if symlinks and os.path.islink(srcname):
228 if os.path.islink(path):
232 onerror(os.path.islink, path, sys.exc_info())
SimpleHTTPServer.py 126 if os.path.islink(fullname):
compileall.py 57 not os.path.islink(fullname):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 11 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
98 def islink(s): function
182 if isdir(name) and not islink(name):
196 # realpath is a no-op on systems without islink support
posixpath.py 30 "getatime","getctime","islink","exists","lexists","isdir","isfile",
139 def islink(path): function
191 if islink(path):
392 if not islink(newpath):
os2emxpath.py 11 from ntpath import (expanduser, expandvars, isabs, islink, splitdrive, namespace
16 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
156 # realpath is a no-op on systems without islink support
tabnanny.py 84 if os.path.isdir(file) and not os.path.islink(file):
91 not os.path.islink(fullname) or
os.py 266 islink, join, isdir = path.islink, path.join, path.isdir
293 if followlinks or not islink(new_path):
shutil.py 185 if symlinks and os.path.islink(srcname):
228 if os.path.islink(path):
232 onerror(os.path.islink, path, sys.exc_info())
SimpleHTTPServer.py 126 if os.path.islink(fullname):
compileall.py 57 not os.path.islink(fullname):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install_egg_info.py 34 if os.path.isdir(target) and not os.path.islink(target):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_egg_info.py 34 if os.path.isdir(target) and not os.path.islink(target):
  /system/core/toolbox/cp/
utils.c 383 int rval, islink; local
386 islink = S_ISLNK(fs->st_mode);
413 if (!islink && !Nflag) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
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):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
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):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 94 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False)
99 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False)
102 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True)
104 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 94 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False)
99 self.assertIs(posixpath.islink(test_support.TESTFN + "1"), False)
102 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True)
104 self.assertIs(posixpath.islink(test_support.TESTFN + "2"), True)
  /development/scripts/
divide_and_compress.py 329 if os.path.isfile(filepath) and not os.path.islink(filepath):
  /pdk/build/
pdk_utils.py 101 if os.path.islink(item_full_path) or os.path.isfile(item_full_path):

Completed in 520 milliseconds

1 2