Home
last modified time | relevance | path

Searched refs:has_section (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython3/Lib/idlelib/
Dconfig.py69 if self.has_section(section):
96 if not self.has_section(section):
106 if self.has_section(section):
112 if not self.has_section(section):
280 cfg = ('default' if self.defaultCfg['highlight'].has_section(theme)
399 if source[cfgname].has_section(name):
481 if self.defaultCfg['extensions'].has_section(keysName):
498 if self.defaultCfg['extensions'].has_section(keysName):
517 if self.defaultCfg['extensions'].has_section(bindsName):
662 if not (self.userCfg['keys'].has_section(keySetName) or
[all …]
/external/python/cpython2/Lib/idlelib/
DconfigHandler.py64 if self.has_section(section):
80 if not self.has_section(section):
99 if self.has_section(section):
115 if not self.has_section(section):
291 if self.defaultCfg['highlight'].has_section(theme):
398 if source['highlight'].has_section(theme):
479 if self.defaultCfg['extensions'].has_section(keysName):
496 if self.defaultCfg['extensions'].has_section(keysName):
515 if self.defaultCfg['extensions'].has_section(bindsName):
DconfigDialog.py1134 if not idleConf.userCfg['keys'].has_section(keySetName):
1146 if not idleConf.userCfg['highlight'].has_section(themeName):
/external/autotest/client/bin/
Dtest_config.py93 if not self.parser.has_section(section):
102 if self.parser.has_section(section):
123 if not self.parser.has_section(section):
/external/yapf/yapf/yapflib/
Dstyle.py538 if not config.has_section('yapf'):
542 if not config.has_section('style'):
546 if not config.has_section('style'):
565 section = 'yapf' if config.has_section('yapf') else 'style'
Dfile_resources.py59 if config.has_section('yapf'):
/external/igt-gpu-tools/overlay/
Dconfig.c95 int has_section = 0; in parse() local
120 has_section = 1; in parse()
157 if (!has_section) { in parse()
/external/oss-fuzz/infra/base-images/base-runner/
Dparse_options.py27 if not parser.has_section(options_section):
/external/autotest/client/common_lib/
Dglobal_config.py150 if self.config.has_section(section):
285 if not self.config.has_section(section):
Dsoftware_manager.py442 if not self.cfgparser.has_section(section_name):
/external/sonivox/jet_tools/JetCreator/
DJetUtils.py243 if not config.has_section(section):
255 if config.has_section(section):
288 if config.has_section(JetDefs.RECENT_SECTION):
305 if config.has_section(JetDefs.RECENT_SECTION):
DJetFile.py309 if not config.has_section(segment_name):
/external/python/setuptools/setuptools/command/
Dsetopt.py49 if not opts.has_section(section):
Deasy_install.py1526 if not cfg.has_section('metadata') or not cfg.has_section('Setup'):
/external/autotest/client/common_lib/cros/
Davahi_utils.py47 if not conf.has_section(section):
/external/autotest/server/cros/
Dap_config.py95 if not config.has_section(bss):
/external/python/cpython3/Lib/
Dconfigparser.py663 def has_section(self, section): member in RawConfigParser
959 if key != self.default_section and not self.has_section(key):
979 if not self.has_section(key):
984 return key == self.default_section or self.has_section(key)
/external/autotest/frontend/afe/
Dmoblab_rpc_interface.py158 if not existing_shadow.has_section(section):
188 if not new_shadow.has_section(section):
/external/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py431 if parser.has_section("common"):
/external/python/cpython2/Lib/
DConfigParser.py267 def has_section(self, section): member in RawConfigParser
/external/python/cpython2/Lib/test/
Dtest_cfgparser.py189 self.assertFalse(cf.has_section("Foo"),
/external/python/cpython2/Doc/library/
Dconfigparser.rst254 .. method:: RawConfigParser.has_section(section)
/external/python/cpython3/Lib/test/
Dtest_configparser.py564 self.assertFalse(cf.has_section("Foo"),
/external/python/cpython3/Doc/library/
Dconfigparser.rst962 .. method:: has_section(section)