/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_ccompiler.py | 1 """Tests for distutils.ccompiler.""" 6 from distutils.ccompiler import (gen_lib_options, CCompiler, 40 class MyCCompiler(CCompiler):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_ccompiler.py | 1 """Tests for distutils.ccompiler.""" 6 from distutils.ccompiler import (gen_lib_options, CCompiler, 40 class MyCCompiler(CCompiler):
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
bcppcompiler.py | 3 Contains BorlandCCompiler, an implementation of the abstract CCompiler class 20 from distutils.ccompiler import CCompiler, gen_preprocess_options 25 class BCPPCompiler(CCompiler) : 27 compiler, as defined by the CCompiler abstract class. 32 # Just set this so CCompiler's constructor doesn't barf. We currently 33 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 44 # base class, CCompiler. 58 CCompiler.__init__ (self, verbose, dry_run, force) 203 if target_desc == CCompiler.EXECUTABLE [all...] |
unixccompiler.py | 3 Contains the UnixCCompiler class, a subclass of CCompiler that handles 23 from distutils.ccompiler import \ 24 CCompiler, gen_preprocess_options, gen_lib_options 48 class UnixCCompiler(CCompiler): 52 # These are used by CCompiler in two places: the constructor sets 72 # class, CCompiler. NB. whoever instantiates/uses a particular 187 if target_desc == CCompiler.EXECUTABLE: 216 # ccompiler.py.
|
msvccompiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 19 from distutils.ccompiler import CCompiler, gen_lib_options 204 class MSVCCompiler (CCompiler) : 206 as defined by the CCompiler abstract class.""" 210 # Just set this so CCompiler's constructor doesn't barf. We currently 211 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 224 # base class, CCompiler. 235 CCompiler.__init__ (self, verbose, dry_run, force) 320 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
msvc9compiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 24 from distutils.ccompiler import CCompiler, gen_lib_options 309 class MSVCCompiler(CCompiler) : 311 as defined by the CCompiler abstract class.""" 315 # Just set this so CCompiler's constructor doesn't barf. We currently 316 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 329 # base class, CCompiler. 340 CCompiler.__init__ (self, verbose, dry_run, force) 441 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
ccompiler.py | 1 """distutils.ccompiler 3 Contains CCompiler, an abstract base class that defines the interface 23 class CCompiler: 40 # 'isinstance'. In concrete CCompiler subclasses, 'compiler_type' 147 # Note that some CCompiler implementation classes will define class 674 self.link(CCompiler.SHARED_LIBRARY, objects, 687 self.link(CCompiler.SHARED_OBJECT, objects, 697 self.link(CCompiler.EXECUTABLE, objects, [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
bcppcompiler.py | 3 Contains BorlandCCompiler, an implementation of the abstract CCompiler class 20 from distutils.ccompiler import CCompiler, gen_preprocess_options 25 class BCPPCompiler(CCompiler) : 27 compiler, as defined by the CCompiler abstract class. 32 # Just set this so CCompiler's constructor doesn't barf. We currently 33 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 44 # base class, CCompiler. 58 CCompiler.__init__ (self, verbose, dry_run, force) 203 if target_desc == CCompiler.EXECUTABLE [all...] |
unixccompiler.py | 3 Contains the UnixCCompiler class, a subclass of CCompiler that handles 23 from distutils.ccompiler import \ 24 CCompiler, gen_preprocess_options, gen_lib_options 48 class UnixCCompiler(CCompiler): 52 # These are used by CCompiler in two places: the constructor sets 72 # class, CCompiler. NB. whoever instantiates/uses a particular 187 if target_desc == CCompiler.EXECUTABLE: 216 # ccompiler.py.
|
msvccompiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 19 from distutils.ccompiler import CCompiler, gen_lib_options 204 class MSVCCompiler (CCompiler) : 206 as defined by the CCompiler abstract class.""" 210 # Just set this so CCompiler's constructor doesn't barf. We currently 211 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 224 # base class, CCompiler. 235 CCompiler.__init__ (self, verbose, dry_run, force) 320 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
msvc9compiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 24 from distutils.ccompiler import CCompiler, gen_lib_options 309 class MSVCCompiler(CCompiler) : 311 as defined by the CCompiler abstract class.""" 315 # Just set this so CCompiler's constructor doesn't barf. We currently 316 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 329 # base class, CCompiler. 340 CCompiler.__init__ (self, verbose, dry_run, force) 441 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
ccompiler.py | 1 """distutils.ccompiler 3 Contains CCompiler, an abstract base class that defines the interface 23 class CCompiler: 40 # 'isinstance'. In concrete CCompiler subclasses, 'compiler_type' 147 # Note that some CCompiler implementation classes will define class 674 self.link(CCompiler.SHARED_LIBRARY, objects, 687 self.link(CCompiler.SHARED_OBJECT, objects, 697 self.link(CCompiler.EXECUTABLE, objects, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
bcppcompiler.py | 3 Contains BorlandCCompiler, an implementation of the abstract CCompiler class 20 from distutils.ccompiler import CCompiler, gen_preprocess_options 25 class BCPPCompiler(CCompiler) : 27 compiler, as defined by the CCompiler abstract class. 32 # Just set this so CCompiler's constructor doesn't barf. We currently 33 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 44 # base class, CCompiler. 58 CCompiler.__init__ (self, verbose, dry_run, force) 203 if target_desc == CCompiler.EXECUTABLE [all...] |
unixccompiler.py | 3 Contains the UnixCCompiler class, a subclass of CCompiler that handles 23 from distutils.ccompiler import \ 24 CCompiler, gen_preprocess_options, gen_lib_options 48 class UnixCCompiler(CCompiler): 52 # These are used by CCompiler in two places: the constructor sets 72 # class, CCompiler. NB. whoever instantiates/uses a particular 177 if target_desc == CCompiler.EXECUTABLE: 206 # ccompiler.py.
|
msvccompiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 19 from distutils.ccompiler import CCompiler, gen_lib_options 204 class MSVCCompiler (CCompiler) : 206 as defined by the CCompiler abstract class.""" 210 # Just set this so CCompiler's constructor doesn't barf. We currently 211 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 224 # base class, CCompiler. 235 CCompiler.__init__ (self, verbose, dry_run, force) 320 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
msvc9compiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 24 from distutils.ccompiler import CCompiler, gen_lib_options 309 class MSVCCompiler(CCompiler) : 311 as defined by the CCompiler abstract class.""" 315 # Just set this so CCompiler's constructor doesn't barf. We currently 316 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 329 # base class, CCompiler. 340 CCompiler.__init__ (self, verbose, dry_run, force) 441 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
ccompiler.py | 1 """distutils.ccompiler 3 Contains CCompiler, an abstract base class that defines the interface 23 class CCompiler: 40 # 'isinstance'. In concrete CCompiler subclasses, 'compiler_type' 147 # Note that some CCompiler implementation classes will define class 674 self.link(CCompiler.SHARED_LIBRARY, objects, 687 self.link(CCompiler.SHARED_OBJECT, objects, 697 self.link(CCompiler.EXECUTABLE, objects, [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
bcppcompiler.py | 3 Contains BorlandCCompiler, an implementation of the abstract CCompiler class 20 from distutils.ccompiler import CCompiler, gen_preprocess_options 25 class BCPPCompiler(CCompiler) : 27 compiler, as defined by the CCompiler abstract class. 32 # Just set this so CCompiler's constructor doesn't barf. We currently 33 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 44 # base class, CCompiler. 58 CCompiler.__init__ (self, verbose, dry_run, force) 203 if target_desc == CCompiler.EXECUTABLE [all...] |
unixccompiler.py | 3 Contains the UnixCCompiler class, a subclass of CCompiler that handles 23 from distutils.ccompiler import \ 24 CCompiler, gen_preprocess_options, gen_lib_options 48 class UnixCCompiler(CCompiler): 52 # These are used by CCompiler in two places: the constructor sets 72 # class, CCompiler. NB. whoever instantiates/uses a particular 177 if target_desc == CCompiler.EXECUTABLE: 206 # ccompiler.py.
|
msvccompiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 19 from distutils.ccompiler import CCompiler, gen_lib_options 204 class MSVCCompiler (CCompiler) : 206 as defined by the CCompiler abstract class.""" 210 # Just set this so CCompiler's constructor doesn't barf. We currently 211 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 224 # base class, CCompiler. 235 CCompiler.__init__ (self, verbose, dry_run, force) 320 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
msvc9compiler.py | 3 Contains MSVCCompiler, an implementation of the abstract CCompiler class 24 from distutils.ccompiler import CCompiler, gen_lib_options 309 class MSVCCompiler(CCompiler) : 311 as defined by the CCompiler abstract class.""" 315 # Just set this so CCompiler's constructor doesn't barf. We currently 316 # don't use the 'set_executables()' bureaucracy provided by CCompiler, 329 # base class, CCompiler. 340 CCompiler.__init__ (self, verbose, dry_run, force) 441 # Copied from ccompiler.py, extended to return .res as 'object'-fil [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
config.py | 94 """Check that 'self.compiler' really is a CCompiler object; 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler): 185 from distutils.ccompiler import CompileError 229 from distutils.ccompiler import CompileError 247 from distutils.ccompiler import CompileError, LinkError 266 from distutils.ccompiler import CompileError, LinkError
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
config.py | 94 """Check that 'self.compiler' really is a CCompiler object; 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler): 185 from distutils.ccompiler import CompileError 229 from distutils.ccompiler import CompileError 247 from distutils.ccompiler import CompileError, LinkError 266 from distutils.ccompiler import CompileError, LinkError
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 94 """Check that 'self.compiler' really is a CCompiler object; 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler): 185 from distutils.ccompiler import CompileError 229 from distutils.ccompiler import CompileError 247 from distutils.ccompiler import CompileError, LinkError 266 from distutils.ccompiler import CompileError, LinkError
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 94 """Check that 'self.compiler' really is a CCompiler object; 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler): 185 from distutils.ccompiler import CompileError 229 from distutils.ccompiler import CompileError 247 from distutils.ccompiler import CompileError, LinkError 266 from distutils.ccompiler import CompileError, LinkError
|