Home
last modified time | relevance | path

Searched refs:configType (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/idlelib/
Dconfig.py214 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/
DconfigHandler.py216 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 …]
DconfigDialog.py631 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/
Dtest_squeezer.py111 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)
Dtest_codecontext.py96 def mock_idleconf_GetFont(root, configType, section): argument
Dtest_sidebar.py69 def mock_idleconf_GetFont(root, configType, section): argument
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBasicSerializerFactory.java986 JavaType contentType, Class<?> configType) in _findInclusionWithContent() argument
997 inclV = config.getDefaultPropertyInclusion(configType, inclV); in _findInclusionWithContent()