/external/python/cpython2/Lib/distutils/command/ |
D | install_lib.py | 152 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())
|
D | install_scripts.py | 50 for file in self.get_outputs(): 61 def get_outputs(self): member in install_scripts
|
D | install_headers.py | 48 def get_outputs(self): member in install_headers
|
D | install.py | 582 outputs = self.get_outputs() 618 def get_outputs (self): member in install 625 for filename in cmd.get_outputs():
|
D | install_data.py | 80 def get_outputs(self): member in install_data
|
D | install_egg_info.py | 47 def get_outputs(self): member in install_egg_info
|
D | build_py.py | 96 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/ |
D | install_lib.py | 148 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())
|
D | install_scripts.py | 48 for file in self.get_outputs(): 59 def get_outputs(self): member in install_scripts
|
D | install_headers.py | 46 def get_outputs(self): member in install_headers
|
D | build_py.py | 95 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))
|
D | install.py | 565 outputs = self.get_outputs() 600 def get_outputs(self): member in install 607 for filename in cmd.get_outputs():
|
D | install_data.py | 78 def get_outputs(self): member in install_data
|
D | install_egg_info.py | 46 def get_outputs(self): member in install_egg_info
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_install_data.py | 36 self.assertEqual(len(cmd.get_outputs()), 2) 49 self.assertEqual(len(cmd.get_outputs()), 2) 67 self.assertEqual(len(cmd.get_outputs()), 4)
|
D | test_install_headers.py | 33 self.assertEqual(len(cmd.get_outputs()), 2)
|
D | test_build_ext.py | 344 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/ |
D | test_install_data.py | 38 self.assertEqual(len(cmd.get_outputs()), 2) 51 self.assertEqual(len(cmd.get_outputs()), 2) 69 self.assertEqual(len(cmd.get_outputs()), 4)
|
D | test_install_headers.py | 35 self.assertEqual(len(cmd.get_outputs()), 2)
|
D | setuptools_build_ext.py | 196 def get_outputs(self): member in build_ext 197 outputs = _build_ext.get_outputs(self)
|
D | test_build_ext.py | 281 self.assertEqual(len(cmd.get_outputs()), 1) 294 so_file = cmd.get_outputs()[0] 305 so_file = cmd.get_outputs()[0]
|
D | test_install_lib.py | 68 self.assertGreaterEqual(len(cmd.get_outputs()), 2)
|
/external/python/setuptools/setuptools/command/ |
D | install_lib.py | 116 def get_outputs(self): member in install_lib 117 outputs = orig.install_lib.get_outputs(self)
|
D | install_egg_info.py | 46 def get_outputs(self): member in install_egg_info
|
D | build_ext.py | 215 def get_outputs(self): member in build_ext 216 return _build_ext.get_outputs(self) + self.__get_stubs_outputs()
|