Searched refs:GetThemeDict (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 292 themeDict = self.GetThemeDict('default', theme) 294 themeDict = self.GetThemeDict('user', theme) 311 def GetThemeDict(self, type, themeName): member in IdleConf
|
D | configDialog.py | 873 newTheme = idleConf.GetThemeDict(themeType, themeName)
|
/external/python/cpython3/Lib/idlelib/ |
D | config.py | 296 themeDict = self.GetThemeDict('default', theme) 298 themeDict = self.GetThemeDict('user', theme) 315 def GetThemeDict(self, type, themeName): member in IdleConf
|
D | configdialog.py | 1157 new_theme = idleConf.GetThemeDict(theme_type, theme_name)
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_configdialog.py | 547 eq(idleConf.GetThemeDict('default', 'IDLE Classic'), 548 idleConf.GetThemeDict('user', first_new)) 558 self.assertNotEqual(idleConf.GetThemeDict('user', first_new), 559 idleConf.GetThemeDict('user', second_new)) 562 eq(idleConf.GetThemeDict('user', first_new), 563 idleConf.GetThemeDict('user', second_new))
|
D | test_config.py | 398 conf.GetThemeDict('default', 'IDLE Classic'), 399 conf.GetThemeDict('user', 'IDLE Classic')) 402 conf.GetThemeDict('bad', 'IDLE Classic')
|