Home
last modified time | relevance | path

Searched refs:launch_ide (Results 1 – 5 of 5) sorted by relevance

/tools/asuite/aidegen/
Daidegen_main.py223 ide_util_obj.launch_ide()
396 launch_ide = True
407 launch_ide = not args.no_launch
439 if not launch_ide and exit_code is constant.EXIT_CODE_NORMAL:
Daidegen_main_unittest.py215 mock_ide_util.launch_ide.return_value = None
220 self.assertTrue(mock_ide_util.launch_ide.called)
/tools/asuite/aidegen/lib/
Dide_util.py128 def launch_ide(self): member in IdeUtil
130 return self._ide.launch_ide()
211 def launch_ide(self): member in IdeBase
213 ide_common_util.launch_ide(self.project_abspath, self._get_ide_cmd(),
Dide_util_unittest.py100 ide_util_obj.launch_ide()
399 ide_base.launch_ide()
Dide_common_util.py150 def launch_ide(project_path, run_ide_cmd, ide_name): function