Searched refs:ext_modules (Results 1 – 25 of 56) sorted by relevance
123
/external/python/setuptools/setuptools/tests/ |
D | test_setuptools.py | 131 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 …]
|
D | test_build_ext.py | 34 dist = Distribution(dict(ext_modules=[extension]))
|
/external/capstone/bindings/python/ |
D | setup_cython.py | 41 ext_modules = [Extension("capstone.ccapstone", variable 46 ext_modules += [Extension("capstone.%s" % name, 127 ext_modules = ext_modules,
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_install_lib.py | 63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])] 80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_install_lib.py | 64 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])] 84 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
|
/external/python/cpython2/Mac/Modules/launch/ |
D | setup.py | 7 ext_modules=[
|
/external/python/cpython2/Mac/Modules/qt/ |
D | setup.py | 7 ext_modules=[
|
/external/python/cpython2/Mac/Modules/osa/ |
D | setup.py | 7 ext_modules=[
|
/external/python/cpython2/Doc/includes/ |
D | setup.py | 3 ext_modules=[
|
/external/python/cpython3/Doc/includes/ |
D | setup.py | 3 ext_modules=[
|
/external/e2fsprogs/contrib/python-uuid/ |
D | setup.py | 11 ext_modules = [uuid])
|
/external/autotest/utils/named_semaphore/ |
D | setup.py | 8 ext_modules=[module])
|
/external/autotest/client/deps/lansim/src/ |
D | setup.py | 45 ext_modules = ext_mods,
|
/external/libnl/python/ |
D | setup.py.in | 38 ext_modules = [netlink_capi, route_capi, genl_capi],
|
/external/python/cpython2/Doc/extending/ |
D | building.rst | 39 ext_modules = [module1]) 61 driver script. In the example above, the ``ext_modules`` argument to 92 ext_modules = [module1])
|
/external/python/cpython3/Doc/extending/ |
D | building.rst | 70 ext_modules = [module1]) 92 driver script. In the example above, the ``ext_modules`` argument to 124 ext_modules = [module1])
|
/external/python/cpython2/Doc/distutils/ |
D | examples.rst | 202 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/ |
D | setup.py | 120 ext_modules=[libfdt_module],
|
/external/dtc/pylibfdt/ |
D | setup.py | 118 ext_modules=[libfdt_module],
|
/external/python/cpython2/Lib/distutils/command/ |
D | build.py | 103 if self.distribution.ext_modules:
|
/external/python/cpython3/Lib/distutils/command/ |
D | build.py | 105 if self.distribution.ext_modules:
|
/external/python/setuptools/setuptools/ |
D | dist.py | 703 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/ |
D | setup.py | 154 ext_modules=[ext],
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/ |
D | ext.py | 40 installer.distribution.ext_modules = []
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
D | ext.py | 41 installer.distribution.ext_modules = []
|
123