/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
D | test_discovery.py | 31 original_isfile = os.path.isfile 33 os.path.isfile = original_isfile 49 def isfile(path): function 52 os.path.isfile = isfile 74 original_isfile = os.path.isfile 76 os.path.isfile = original_isfile 89 os.path.isfile = lambda path: os.path.basename(path) not in directories 136 original_isfile = os.path.isfile 139 os.path.isfile = original_isfile 141 os.path.isfile = lambda path: False [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_compileall.py | 66 self.assertTrue(os.path.isfile(self.bc_path) \ 67 and not os.path.isfile(self.bc_path2)) 70 self.assertTrue(os.path.isfile(self.bc_path) \ 71 and os.path.isfile(self.bc_path2))
|
D | test_unicode_file.py | 46 self.assertTrue(os.path.isfile(filename)) 49 self.assertTrue(os.path.isfile(os.path.abspath(filename))) 95 self.assertTrue(os.path.isfile(filename1)) # must exist. 97 self.assertTrue(os.path.isfile(filename1+".new")) 99 self.assertTrue(os.path.isfile(filename2))
|
D | test_genericpath.py | 141 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), False) 146 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), True) 149 self.assertIs(self.pathmodule.isfile(test_support.TESTFN), False)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
D | rcslib.py | 174 return (os.path.isfile(namev) or 175 os.path.isfile(os.path.join('RCS', namev))) 187 if os.path.isfile(namev): return namev 189 if os.path.isfile(namev): return namev 205 if os.path.isfile(name): return name
|
D | FSProxy.py | 85 if not os.path.isfile(name): 121 files = filter(os.path.isfile, files) 138 def isfile(self, name): member in FSProxyLocal 139 return self.visible(name) and os.path.isfile(name)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | sdist.py | 192 template_exists = os.path.isfile(self.template) 249 files = filter(os.path.isfile, glob(pattern)) 273 if os.path.isfile(item): 279 if os.path.isfile(f): 355 if os.path.isfile(self.manifest): 422 if not os.path.isfile(file):
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | LongFilePathOsPath.py | 17 def isfile(path): function 18 return os.path.isfile(LongFilePath(path))
|
D | TargetTxtClassObject.py | 61 if os.path.exists(Filename) and os.path.isfile(Filename): 107 if not os.path.exists(Tools_Def) or not os.path.isfile(Tools_Def): 117 if not os.path.exists(Build_Rule) or not os.path.isfile(Build_Rule):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | file_util.py | 107 if not os.path.isfile(src): 172 from os.path import exists, isfile, isdir, basename, dirname 181 if not isfile(src):
|
D | spawn.py | 165 if not os.path.isfile(executable): 168 if os.path.isfile(f):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | test_sysconfig.py | 25 if os.path.isfile(path): 48 self.assertTrue(os.path.isfile(python_h), python_h)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | getpath.c | 145 isfile(char *filename) /* Is file, not directory */ in isfile() function 159 if (isfile(filename)) in ismodule() 165 if (isfile(filename)) in ismodule() 282 if (isfile(prefix)) { in search_for_prefix() 341 if (isfile(exec_prefix)) { in search_for_exec_prefix()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | FvImageSection.py | 66 if os.path.isfile(FvFileName): 111 if os.path.isfile(FvFileName):
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/ |
D | RmPkg.py | 210 if not os.path.isfile(StoredDistFile): 238 if os.path.isfile(Path): 257 if os.path.isfile(Path):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/ |
D | saxutils.py | 341 isfile = os.path.isfile(sysidfilename) 343 isfile = False 344 if isfile:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
D | getpath.c | 129 isfile(char *filename) in isfile() function 154 if (isfile(filename)) { in ismodule() 162 if (isfile(filename)) { in ismodule()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | loader.py | 186 is_not_importable = not os.path.isfile(os.path.join(start_dir, '__init__.py')) 243 if os.path.isfile(full_path): 268 if not os.path.isfile(os.path.join(full_path, '__init__.py')):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | genericpath.py | 26 def isfile(path): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | genericpath.py | 34 def isfile(path): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/ |
D | freeze.py | 265 if not os.path.isfile(file): 272 if not os.path.isfile(setup): 290 if not os.path.isfile(arg):
|
/device/linaro/hikey/installer/hikey/ |
D | hisi-idt.py | 251 if not os.path.isfile(img1): 256 if not os.path.isfile(img2):
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | Exception.py | 70 if FilePath and os.path.isfile(FilePath):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | pysource.py | 106 if os.path.isfile(path):
|
D | findnocoding.py | 21 if os.path.isfile(path):
|