Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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_data.py80 def get_outputs(self): member in install_data
Dinstall_egg_info.py47 def get_outputs(self): member in install_egg_info
Dinstall.py582 outputs = self.get_outputs()
618 def get_outputs (self): member in install
625 for filename in cmd.get_outputs():
Dbuild_py.py96 self.byte_compile(self.get_outputs(include_bytecode=0))
307 def get_outputs(self, include_bytecode=1): member in build_py
Dbuild_ext.py430 def get_outputs(self): member in build_ext
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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)
Dtest_build_py.py57 self.assertEqual(len(cmd.get_outputs()), 3)
Dsetuptools_build_ext.py196 def get_outputs(self): member in build_ext
197 outputs = _build_ext.get_outputs(self)
Dtest_install_lib.py68 self.assertTrue(len(cmd.get_outputs()) >= 2)
Dtest_build_ext.py276 self.assertEqual(len(cmd.get_outputs()), 1)
292 so_file = cmd.get_outputs()[0]
303 so_file = cmd.get_outputs()[0]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dcmd.py456 def get_outputs(self): member in install_misc