Lines Matching refs:project_path
56 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))
182 _, ext = os.path.splitext(os.path.basename(project_path))
184 path = os.path.dirname(project_path)