Home
last modified time | relevance | path

Searched refs:CCompiler (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_ccompiler.py6 from distutils.ccompiler import (gen_lib_options, CCompiler,
39 class MyCCompiler(CCompiler):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dbcppcompiler.py20 from distutils.ccompiler import CCompiler, gen_preprocess_options
25 class BCPPCompiler(CCompiler) :
58 CCompiler.__init__ (self, verbose, dry_run, force)
203 if target_desc == CCompiler.EXECUTABLE:
Dunixccompiler.py24 CCompiler, gen_preprocess_options, gen_lib_options
107 class UnixCCompiler(CCompiler):
235 if target_desc == CCompiler.EXECUTABLE:
Dmsvc9compiler.py24 from distutils.ccompiler import CCompiler, gen_lib_options
309 class MSVCCompiler(CCompiler) :
340 CCompiler.__init__ (self, verbose, dry_run, force)
611 if target_desc == CCompiler.EXECUTABLE:
669 if target_desc == CCompiler.EXECUTABLE:
Dmsvccompiler.py19 from distutils.ccompiler import CCompiler, gen_lib_options
204 class MSVCCompiler (CCompiler) :
235 CCompiler.__init__ (self, verbose, dry_run, force)
496 if target_desc == CCompiler.EXECUTABLE:
Dccompiler.py73 class CCompiler: class
724 self.link(CCompiler.SHARED_LIBRARY, objects,
737 self.link(CCompiler.SHARED_OBJECT, objects,
747 self.link(CCompiler.EXECUTABLE, objects,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dconfig.py99 from distutils.ccompiler import CCompiler, new_compiler
100 if not isinstance(self.compiler, CCompiler):