Home
last modified time | relevance | path

Searched refs:project_path (Results 1 – 8 of 8) sorted by relevance

/tools/asuite/aidegen/lib/
Dide_common_util.py56 def _run_ide_sh(run_sh_cmd, project_path): argument
69 project_path, err)
150 def launch_ide(project_path, run_ide_cmd, ide_name): argument
158 assert project_path, 'Empty content path is not allowed.'
164 project_path)
165 _run_ide_sh(run_ide_cmd, project_path)
168 def is_intellij_project(project_path): argument
178 if not os.path.isfile(project_path):
179 return os.path.isdir(project_path) and os.path.isdir(
180 os.path.join(project_path, _IDEA_FOLDER))
[all …]
Dproject_info_unittest.py98 self.args.project_path = ''
212 args.project_path = ''
/tools/treble/split/
Dmanifest_split.py250 for module, project_path in module_project_paths.items():
251 if not project_path:
254 repo_project = repo_projects[project_path]
406 project_path = os.path.join(*parts[:index + 1])
407 if project_path in repo_projects:
408 return project_path
428 repo_projects[project_path]: inputs
429 for project_path, inputs in input_project_paths.items()
430 if project_path is not None
/tools/external_updater/
Dbase_updater.py81 def project_path(self) -> Path: member in Updater
Dgit_updater.py64 project = fileutils.canonicalize_project_path(self.project_path)
Dcrates_updater.py184 cargo_toml = os.path.join(self.project_path, "Cargo.toml")
Dexternal_updater.py89 full_path = updater.project_path
/tools/repohooks/
Dpre-upload.py578 project_path = rh.utils.run(cmd, capture_output=True).stdout.strip()
582 module_path = project_path[len(superproject_path) + 1:]