Home
last modified time | relevance | path

Searched refs:has_ext_modules (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
Dbuild.py137 def has_ext_modules (self): member in build
138 return self.distribution.has_ext_modules()
145 ('build_ext', has_ext_modules),
Dinstall_lib.py110 if self.distribution.has_ext_modules():
197 self._mutate_outputs(self.distribution.has_ext_modules(),
215 if self.distribution.has_ext_modules():
Dbdist_wininst.py98 if not self.skip_build and self.distribution.has_ext_modules():
124 (self.distribution.has_ext_modules() or
144 if self.distribution.has_ext_modules():
190 if self.distribution.has_ext_modules():
Dbdist_dumb.py110 if (self.distribution.has_ext_modules() and
125 if self.distribution.has_ext_modules():
Dbdist_rpm.py215 if not self.distribution.has_ext_modules():
383 if self.distribution.has_ext_modules():
452 if not self.distribution.has_ext_modules():
Dbdist_msi.py147 if (not self.target_version) and self.distribution.has_ext_modules():
152 if not self.skip_build and self.distribution.has_ext_modules()\
194 if self.distribution.has_ext_modules():
Dsdist.py288 if self.distribution.has_ext_modules():
Dinstall.py651 self.distribution.has_ext_modules())
/external/python/cpython3/Lib/distutils/command/
Dbuild.py146 def has_ext_modules(self): member in build
147 return self.distribution.has_ext_modules()
155 ('build_ext', has_ext_modules),
Dinstall_lib.py106 if self.distribution.has_ext_modules():
195 self._mutate_outputs(self.distribution.has_ext_modules(),
213 if self.distribution.has_ext_modules():
Dbdist_wininst.py90 if not self.skip_build and self.distribution.has_ext_modules():
114 (self.distribution.has_ext_modules() or
134 if self.distribution.has_ext_modules():
180 if self.distribution.has_ext_modules():
Dbdist_dumb.py100 if (self.distribution.has_ext_modules() and
115 if self.distribution.has_ext_modules():
Dbdist_rpm.py206 if not self.distribution.has_ext_modules():
369 if self.distribution.has_ext_modules():
452 if not self.distribution.has_ext_modules():
Dbdist_msi.py146 if (not self.target_version) and self.distribution.has_ext_modules():
151 if not self.skip_build and self.distribution.has_ext_modules()\
192 if self.distribution.has_ext_modules():
Dsdist.py273 if self.distribution.has_ext_modules():
Dinstall.py632 self.distribution.has_ext_modules())
/external/python/cpython2/Lib/distutils/
Ddist.py981 def has_ext_modules(self): member in Distribution
988 return self.has_pure_modules() or self.has_ext_modules()
1001 not self.has_ext_modules() and
/external/python/cpython3/Lib/distutils/
Ddist.py982 def has_ext_modules(self): member in Distribution
989 return self.has_pure_modules() or self.has_ext_modules()
1002 not self.has_ext_modules() and
/external/tensorflow/tensorflow/tools/pip_package/
Dsetup.py96 def has_ext_modules(self): member in BinaryDistribution