• Home
  • Raw
  • Download

Lines Matching refs:installed_path

118                  installed_path=None,  argument
124 self._ide = _get_ide(installed_path, ide, config_reset, is_mac)
199 def __init__(self, installed_path=None, config_reset=False): argument
200 self._installed_path = installed_path
318 def _init_installed_path(self, installed_path): argument
324 if installed_path:
326 installed_path, self._bin_file_name)
475 def __init__(self, installed_path=None, config_reset=False): argument
476 super().__init__(installed_path, config_reset)
706 def __init__(self, installed_path=None, config_reset=False): argument
707 super().__init__(installed_path, config_reset)
714 self._init_installed_path(installed_path)
785 def __init__(self, installed_path=None, config_reset=False): argument
786 super().__init__(installed_path, config_reset)
796 self._init_installed_path(installed_path)
830 def __init__(self, installed_path=None, config_reset=False): argument
831 super().__init__(installed_path, config_reset)
915 def __init__(self, installed_path=None, config_reset=False): argument
916 super().__init__(installed_path, config_reset)
920 self._init_installed_path(installed_path)
946 def __init__(self, installed_path=None, config_reset=False): argument
947 super().__init__(installed_path, config_reset)
951 self._init_installed_path(installed_path)
976 def __init__(self, installed_path=None, config_reset=False): argument
977 super().__init__(installed_path, config_reset)
1042 def __init__(self, installed_path=None, config_reset=False): argument
1043 super().__init__(installed_path, config_reset)
1046 self._init_installed_path(installed_path)
1058 def __init__(self, installed_path=None, config_reset=False): argument
1059 super().__init__(installed_path, config_reset)
1063 self._init_installed_path(installed_path)
1075 def __init__(self, installed_path=None, config_reset=False): argument
1076 super().__init__(installed_path, config_reset)
1094 def __init__(self, installed_path=None, config_reset=False): argument
1095 super().__init__(installed_path, config_reset)
1101 self._init_installed_path(installed_path)
1112 def __init__(self, installed_path=None, config_reset=False): argument
1113 super().__init__(installed_path, config_reset)
1117 self._init_installed_path(installed_path)
1128 def __init__(self, installed_path=None, config_reset=False): argument
1129 super().__init__(installed_path, config_reset)
1142 def __init__(self, installed_path=None, config_reset=False): argument
1143 super().__init__(installed_path, config_reset)
1147 self._init_installed_path(installed_path)
1153 def __init__(self, installed_path=None, config_reset=False): argument
1154 super().__init__(installed_path, config_reset)
1158 self._init_installed_path(installed_path)
1191 def _get_ide(installed_path=None, ide='j', config_reset=False, is_mac=False): argument
1204 return _get_mac_ide(installed_path, ide, config_reset)
1205 return _get_linux_ide(installed_path, ide, config_reset)
1208 def _get_mac_ide(installed_path=None, ide='j', config_reset=False): argument
1221 return IdeMacEclipse(installed_path, config_reset)
1223 return IdeMacStudio(installed_path, config_reset)
1225 return IdeMacCLion(installed_path, config_reset)
1227 return IdeMacVSCode(installed_path, config_reset)
1228 return IdeMacIntelliJ(installed_path, config_reset)
1231 def _get_linux_ide(installed_path=None, ide='j', config_reset=False): argument
1244 return IdeLinuxEclipse(installed_path, config_reset)
1246 return IdeLinuxStudio(installed_path, config_reset)
1248 return IdeLinuxCLion(installed_path, config_reset)
1250 return IdeLinuxVSCode(installed_path, config_reset)
1251 return IdeLinuxIntelliJ(installed_path, config_reset)