Searched refs:project_path (Results 1 – 4 of 4) sorted by relevance
/tools/external_updater/ |
D | fileutils.py | 29 def get_absolute_project_path(project_path): argument 34 return os.path.join(EXTERNAL_PATH, project_path) 37 def get_metadata_path(project_path): argument 40 get_absolute_project_path(project_path), METADATA_FILENAME) 43 def get_relative_project_path(project_path): argument 45 project_path = get_absolute_project_path(project_path) 46 return os.path.relpath(project_path, EXTERNAL_PATH)
|
/tools/asuite/aidegen/lib/ |
D | ide_common_util.py | 56 def _run_ide_sh(run_sh_cmd, project_path): argument 69 project_path, err) 148 def launch_ide(project_path, run_ide_cmd, ide_name): argument 156 assert project_path, 'Empty content path is not allowed.' 162 project_path) 163 _run_ide_sh(run_ide_cmd, project_path) 166 def is_intellij_project(project_path): argument 176 if not os.path.isfile(project_path): 177 return os.path.isdir(project_path) and os.path.isdir( 178 os.path.join(project_path, _IDEA_FOLDER)) [all …]
|
D | project_info_unittest.py | 98 self.args.project_path = '' 210 args.project_path = ''
|
/tools/treble/split/ |
D | manifest_split.py | 152 for module, project_path in module_project_paths.items(): 153 if not project_path: 156 project_modules.setdefault(repo_projects[project_path], set()).add(module) 273 project_path = os.path.join(*parts[:index + 1]) 274 if project_path in repo_projects: 275 return project_path 294 repo_projects[project_path] 295 for project_path in input_project_paths 296 if project_path is not None
|