/external/python/cpython3/Lib/idlelib/ |
D | config.py | 214 def GetOption(self, configType, section, option, default=None, type=None, argument 228 if self.userCfg[configType].has_option(section, option): 229 return self.userCfg[configType].Get(section, option, 236 self.userCfg[configType].Get(section, option, raw=raw))) 237 _warn(warning, configType, section, option) 239 if self.defaultCfg[configType].has_option(section,option): 240 return self.defaultCfg[configType].Get( 251 _warn(warning, configType, section, option) 254 def SetOption(self, configType, section, option, value): argument 256 self.userCfg[configType].SetOption(section, option, value) [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 216 def GetOption(self, configType, section, option, default=None, type=None, argument 230 if self.userCfg[configType].has_option(section, option): 231 return self.userCfg[configType].Get(section, option, 238 self.userCfg[configType].Get(section, option, raw=raw))) 244 if self.defaultCfg[configType].has_option(section,option): 245 return self.defaultCfg[configType].Get( 262 def SetOption(self, configType, section, option, value): argument 264 self.userCfg[configType].SetOption(section, option, value) 266 def GetSectionList(self, configSet, configType): argument 272 if not (configType in self.config_types): [all …]
|
D | configDialog.py | 631 for configType in dItems: 632 sections = idleConf.GetSectionList('default', configType) 634 dItems[configType][section] = {} 635 options = idleConf.defaultCfg[configType].GetOptionList(section) 637 dItems[configType][section][option] = ( 638 idleConf.defaultCfg[configType].Get(section, option)) 1152 def SetUserValue(self, configType, section, item, value): argument 1153 if idleConf.defaultCfg[configType].has_option(section, item): 1154 if idleConf.defaultCfg[configType].Get(section, item) == value: 1156 return idleConf.userCfg[configType].RemoveOption(section, item) [all …]
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_squeezer.py | 111 def set_idleconf_option_with_cleanup(self, configType, section, option, value): argument 112 prev_val = idleConf.GetOption(configType, section, option) 113 idleConf.SetOption(configType, section, option, value) 115 configType, section, option, prev_val)
|
D | test_codecontext.py | 96 def mock_idleconf_GetFont(root, configType, section): argument
|
D | test_sidebar.py | 69 def mock_idleconf_GetFont(root, configType, section): argument
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | BasicSerializerFactory.java | 986 JavaType contentType, Class<?> configType) in _findInclusionWithContent() argument 997 inclV = config.getDefaultPropertyInclusion(configType, inclV); in _findInclusionWithContent()
|