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