HomeSort by relevance Sort by last modified time
    Searched full:ccompiler (Results 1 - 25 of 39) sorted by null

1 2

  /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):
test_build_clib.py 125 from distutils.ccompiler import new_compiler
  /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):
test_build_clib.py 125 from distutils.ccompiler import new_compiler
  /sdk/emulator/mksdcard/
build.gradle 21 cCompiler.args "-D_FILE_OFFSET_BITS=64"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
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.
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...]
errors.py 53 C files on a platform not supported by a CCompiler subclass."""
69 # Exception classes used by the CCompiler implementation classes
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...]
emxccompiler.py 25 from distutils.ccompiler import gen_preprocess_options, gen_lib_options
180 # override the object_filenames method from CCompiler to
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
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.
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...]
errors.py 53 C files on a platform not supported by a CCompiler subclass."""
69 # Exception classes used by the CCompiler implementation classes
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...]
emxccompiler.py 25 from distutils.ccompiler import gen_preprocess_options, gen_lib_options
180 # override the object_filenames method from CCompiler to
  /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
build_clib.py 26 from distutils.ccompiler import show_compilers
100 from distutils.ccompiler import new_compiler
  /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
build_clib.py 26 from distutils.ccompiler import show_compilers
100 from distutils.ccompiler import new_compiler
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 19 import distutils.ccompiler namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 19 import distutils.ccompiler namespace

Completed in 1600 milliseconds

1 2