Home
last modified time | relevance | path

Searched refs:get_outputs (Results 1 – 25 of 37) sorted by relevance

12

/external/python/cpython2/Lib/distutils/command/
Dinstall_lib.py152 build_files = build_cmd.get_outputs()
182 def get_outputs(self): member in install_lib
213 inputs.extend(build_py.get_outputs())
217 inputs.extend(build_ext.get_outputs())
Dinstall_scripts.py50 for file in self.get_outputs():
61 def get_outputs(self): member in install_scripts
Dinstall_headers.py48 def get_outputs(self): member in install_headers
Dinstall.py582 outputs = self.get_outputs()
618 def get_outputs (self): member in install
625 for filename in cmd.get_outputs():
Dinstall_data.py80 def get_outputs(self): member in install_data
Dinstall_egg_info.py47 def get_outputs(self): member in install_egg_info
Dbuild_py.py96 self.byte_compile(self.get_outputs(include_bytecode=0))
308 def get_outputs(self, include_bytecode=1): member in build_py
/external/python/cpython3/Lib/distutils/command/
Dinstall_lib.py148 build_files = build_cmd.get_outputs()
180 def get_outputs(self): member in install_lib
211 inputs.extend(build_py.get_outputs())
215 inputs.extend(build_ext.get_outputs())
Dinstall_scripts.py48 for file in self.get_outputs():
59 def get_outputs(self): member in install_scripts
Dinstall_headers.py46 def get_outputs(self): member in install_headers
Dbuild_py.py95 self.byte_compile(self.get_outputs(include_bytecode=0))
307 def get_outputs(self, include_bytecode=1): member in build_py
409 self.byte_compile(self.get_outputs(include_bytecode=0))
Dinstall.py565 outputs = self.get_outputs()
600 def get_outputs(self): member in install
607 for filename in cmd.get_outputs():
Dinstall_data.py78 def get_outputs(self): member in install_data
Dinstall_egg_info.py46 def get_outputs(self): member in install_egg_info
/external/python/cpython3/Lib/distutils/tests/
Dtest_install_data.py36 self.assertEqual(len(cmd.get_outputs()), 2)
49 self.assertEqual(len(cmd.get_outputs()), 2)
67 self.assertEqual(len(cmd.get_outputs()), 4)
Dtest_install_headers.py33 self.assertEqual(len(cmd.get_outputs()), 2)
Dtest_build_ext.py344 self.assertEqual(len(cmd.get_outputs()), 1)
357 so_file = cmd.get_outputs()[0]
369 so_file = cmd.get_outputs()[0]
/external/python/cpython2/Lib/distutils/tests/
Dtest_install_data.py38 self.assertEqual(len(cmd.get_outputs()), 2)
51 self.assertEqual(len(cmd.get_outputs()), 2)
69 self.assertEqual(len(cmd.get_outputs()), 4)
Dtest_install_headers.py35 self.assertEqual(len(cmd.get_outputs()), 2)
Dsetuptools_build_ext.py196 def get_outputs(self): member in build_ext
197 outputs = _build_ext.get_outputs(self)
Dtest_build_ext.py281 self.assertEqual(len(cmd.get_outputs()), 1)
294 so_file = cmd.get_outputs()[0]
305 so_file = cmd.get_outputs()[0]
Dtest_install_lib.py68 self.assertGreaterEqual(len(cmd.get_outputs()), 2)
/external/python/setuptools/setuptools/command/
Dinstall_lib.py116 def get_outputs(self): member in install_lib
117 outputs = orig.install_lib.get_outputs(self)
Dinstall_egg_info.py46 def get_outputs(self): member in install_egg_info
Dbuild_ext.py215 def get_outputs(self): member in build_ext
216 return _build_ext.get_outputs(self) + self.__get_stubs_outputs()

12