Home
last modified time | relevance | path

Searched refs:ext_modules (Results 1 – 25 of 56) sorted by relevance

123

/external/python/setuptools/setuptools/tests/
Dtest_setuptools.py131 ext_modules=(self.e1, self.e2),
145 assert self.dist.ext_modules == [self.e1, self.e2]
150 assert self.dist.ext_modules == [self.e1]
157 self.dist.exclude(ext_modules=[self.e1])
158 assert self.dist.ext_modules == [self.e2]
161 self.dist.include(ext_modules=[self.e1])
162 assert self.dist.ext_modules == [self.e2, self.e1]
165 self.dist.include(ext_modules=[self.e1])
166 assert self.dist.ext_modules == [self.e2, self.e1]
172 assert self.dist.ext_modules == [self.e1]
[all …]
Dtest_build_ext.py34 dist = Distribution(dict(ext_modules=[extension]))
/external/capstone/bindings/python/
Dsetup_cython.py41 ext_modules = [Extension("capstone.ccapstone", variable
46 ext_modules += [Extension("capstone.%s" % name,
127 ext_modules = ext_modules,
/external/python/cpython2/Lib/distutils/tests/
Dtest_install_lib.py63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
/external/python/cpython3/Lib/distutils/tests/
Dtest_install_lib.py64 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
84 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
/external/python/cpython2/Mac/Modules/launch/
Dsetup.py7 ext_modules=[
/external/python/cpython2/Mac/Modules/qt/
Dsetup.py7 ext_modules=[
/external/python/cpython2/Mac/Modules/osa/
Dsetup.py7 ext_modules=[
/external/python/cpython2/Doc/includes/
Dsetup.py3 ext_modules=[
/external/python/cpython3/Doc/includes/
Dsetup.py3 ext_modules=[
/external/e2fsprogs/contrib/python-uuid/
Dsetup.py11 ext_modules = [uuid])
/external/autotest/utils/named_semaphore/
Dsetup.py8 ext_modules=[module])
/external/autotest/client/deps/lansim/src/
Dsetup.py45 ext_modules = ext_mods,
/external/libnl/python/
Dsetup.py.in38 ext_modules = [netlink_capi, route_capi, genl_capi],
/external/python/cpython2/Doc/extending/
Dbuilding.rst39 ext_modules = [module1])
61 driver script. In the example above, the ``ext_modules`` argument to
92 ext_modules = [module1])
/external/python/cpython3/Doc/extending/
Dbuilding.rst70 ext_modules = [module1])
92 driver script. In the example above, the ``ext_modules`` argument to
124 ext_modules = [module1])
/external/python/cpython2/Doc/distutils/
Dexamples.rst202 Extension modules are specified using the ``ext_modules`` option.
218 ext_modules=[Extension('foo', ['foo.c'])],
230 ext_modules=[Extension('foopkg.foo', ['foo.c'])],
/external/u-boot/scripts/dtc/pylibfdt/
Dsetup.py120 ext_modules=[libfdt_module],
/external/dtc/pylibfdt/
Dsetup.py118 ext_modules=[libfdt_module],
/external/python/cpython2/Lib/distutils/command/
Dbuild.py103 if self.distribution.ext_modules:
/external/python/cpython3/Lib/distutils/command/
Dbuild.py105 if self.distribution.ext_modules:
/external/python/setuptools/setuptools/
Ddist.py703 if self.ext_modules:
704 self.ext_modules = [
705 p for p in self.ext_modules
865 for ext in self.ext_modules or ():
/external/tensorflow/tensorflow/lite/tools/pip_package/
Dsetup.py154 ext_modules=[ext],
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dext.py40 installer.distribution.ext_modules = []
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dext.py41 installer.distribution.ext_modules = []

123