Searched refs:library_filename (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | unixccompiler.py | 187 self.library_filename(output_libname, output_dir=output_dir) 304 shared_f = self.library_filename(lib, lib_type='shared') 305 dylib_f = self.library_filename(lib, lib_type='dylib') 306 static_f = self.library_filename(lib, lib_type='static')
|
D | msvccompiler.py | 448 self.library_filename (output_libname, output_dir=output_dir) 524 self.library_filename(dll_name)) 556 return self.library_filename (lib) 568 libfile = os.path.join(dir, self.library_filename (name))
|
D | msvc9compiler.py | 563 output_filename = self.library_filename(output_libname, 640 self.library_filename(dll_name)) 723 return self.library_filename(lib) 735 libfile = os.path.join(dir, self.library_filename (name))
|
D | bcppcompiler.py | 155 self.library_filename (output_libname, output_dir=output_dir) 326 libfile = os.path.join(dir, self.library_filename(name))
|
D | ccompiler.py | 725 self.library_filename(output_libname, lib_type='shared'), 892 def library_filename(self, libname, lib_type='static', # or 'shared' member in CCompiler
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | setuptools_build_ext.py | 90 return self.shlib_compiler.library_filename(fn,libtype) 280 if self.library_filename("x").startswith('lib'):
|