Home
last modified time | relevance | path

Searched refs:isdir (Results 1 – 25 of 138) sorted by relevance

123456

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_discovery.py34 original_isdir = os.path.isdir
36 os.path.isdir = original_isdir
44 def isdir(path): function
46 os.path.isdir = isdir
77 original_isdir = os.path.isdir
79 os.path.isdir = original_isdir
86 os.path.isdir = lambda path: True
137 original_isdir = os.path.isdir
157 os.path.isdir = lambda path: True
160 os.path.isdir = original_isdir
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Ddir_util.py44 if os.path.isdir(name) or name == '':
52 while head and tail and not os.path.isdir(head):
74 if not (exc.errno == errno.EEXIST and os.path.isdir(head)):
126 if not dry_run and not os.path.isdir(src):
155 elif os.path.isdir(src_name):
172 if os.path.isdir(real_f) and not os.path.islink(real_f):
Dfile_util.py111 if os.path.isdir(dst):
172 from os.path import exists, isfile, isdir, basename, dirname
184 if isdir(dst):
191 if not isdir(dirname(dst)):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcompileall.py49 if not os.path.isdir(fullname):
54 os.path.isdir(fullname) and \
198 if len(args) != 1 and not os.path.isdir(args[0]):
211 if os.path.isdir(arg):
Dshutil.py117 if os.path.isdir(dst):
128 if os.path.isdir(dst):
188 elif os.path.isdir(srcname):
283 if os.path.isdir(dst):
296 if os.path.isdir(src):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcompileall.py49 if not os.path.isdir(fullname):
54 os.path.isdir(fullname) and \
185 if len(args) != 1 and not os.path.isdir(args[0]):
198 if os.path.isdir(arg):
Dsite.py135 if os.path.isdir(dir):
280 if ENABLE_USER_SITE and os.path.isdir(user_site):
324 if os.path.isdir(sitedir):
587 "exists" if os.path.isdir(USER_BASE) else "doesn't exist")
589 "exists" if os.path.isdir(USER_SITE) else "doesn't exist")
Dshutil.py114 if os.path.isdir(dst):
125 if os.path.isdir(dst):
185 elif os.path.isdir(srcname):
279 if os.path.isdir(dst):
292 if os.path.isdir(src):
Ddircache.py40 if os.path.isdir(os.path.join(head, list[i])):
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DLongFilePathOsPath.py20 def isdir(path): function
21 return os.path.isdir(LongFilePath(path))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dinstall_egg_info.py34 if os.path.isdir(target) and not os.path.islink(target):
38 elif not os.path.isdir(self.install_dir):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dlinktree.py30 if not os.path.isdir(oldtree):
63 if os.path.isdir(oldname) and \
Dfinddiv.py51 if os.path.isdir(filename):
79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn):
Dtreesync.py65 if not os.path.isdir(cvsdir):
72 if not os.path.isdir(slave):
95 if os.path.isdir(mastername) and not os.path.islink(mastername):
Dcrlf.py8 if os.path.isdir(filename):
Dlfcr.py9 if os.path.isdir(filename):
Dpathfix.py53 if os.path.isdir(arg):
80 elif os.path.isdir(fullname):
Dcheckappend.py66 if os.path.isdir(file) and not os.path.islink(file):
72 if ((os.path.isdir(fullname) and
Dpatchcheck.py38 if os.path.isdir('.hg'):
41 elif os.path.isdir('.svn'):
Dmethfix.py44 if os.path.isdir(arg):
71 elif os.path.isdir(fullname):
Dbyext.py15 if os.path.isdir(arg):
40 elif os.path.isdir(full):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
DRCSProxy.py60 files = filter(os.path.isdir, files)
63 def isdir(self, name): member in DirSupport
64 return os.path.isdir(name)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_sysconfig.py27 elif os.path.isdir(path):
46 self.assertTrue(os.path.isdir(inc_dir), inc_dir)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dmakedir.py15 if p and not os.path.isdir(p):
Deqfix.py47 if os.path.isdir(arg):
74 elif os.path.isdir(fullname):

123456