/external/sonivox/jet_tools/JetCreator/ |
D | JetFile.py | 274 if config.has_option(OUTPUT_SECTION, OUTPUT_FILENAME): 281 if config.has_option(OUTPUT_SECTION, OUTPUT_CHASE_CONTROLLERS): 288 if config.has_option(OUTPUT_SECTION, OUTPUT_OMIT_EMPTY_TRACKS): 295 if config.has_option(OUTPUT_SECTION, OUTPUT_COPYRIGHT): 299 if config.has_option(OUTPUT_SECTION, OUTPUT_APP_DATA): 320 if config.has_option(segment_name, SEGMENT_DLSFILE): 322 if config.has_option(segment_name, SEGMENT_START): 324 if config.has_option(segment_name, SEGMENT_END): 326 if config.has_option(segment_name, SEGMENT_LENGTH): 328 if config.has_option(segment_name, SEGMENT_OUTPUT): [all …]
|
D | JetUtils.py | 256 if config.has_option(section, option): 291 if config.has_option(JetDefs.RECENT_SECTION, sFile):
|
/external/python/cpython2/Lib/distutils/ |
D | config.py | 83 if config.has_option(server, key): 93 if config.has_option(server, 'repository'):
|
D | fancy_getopt.py | 108 def has_option (self, long_option): member in FancyGetopt
|
/external/python/cpython3/Lib/distutils/ |
D | config.py | 81 if config.has_option(server, key): 100 if config.has_option(server, 'repository'):
|
D | fancy_getopt.py | 99 def has_option(self, long_option): member in FancyGetopt
|
/external/python/cpython3/Lib/idlelib/ |
D | config.py | 59 if not self.has_option(section, option): 90 if self.has_option(section, option): 240 if self.userCfg[configType].has_option(section, option): 251 if self.defaultCfg[configType].has_option(section,option): 367 if not cfgParser.has_option(themeName, element): 838 if idleConf.defaultCfg[config_type].has_option(section, item):
|
/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 53 if not self.has_option(section, option): 108 if self.has_option(section, option): 230 if self.userCfg[configType].has_option(section, option): 244 if self.defaultCfg[configType].has_option(section,option): 360 if not cfgParser.has_option(themeName, element):
|
/external/python/cpython3/Lib/test/ |
D | test_optparse.py | 368 self.assertTrue(self.parser.has_option("-v")) 369 self.assertTrue(self.parser.has_option("--verbose")) 377 self.assertFalse(self.parser.has_option("-v")) 378 self.assertFalse(self.parser.has_option("--verbose")) 379 self.assertFalse(self.parser.has_option("-n")) 380 self.assertFalse(self.parser.has_option("--noisy")) 382 self.assertTrue(self.parser.has_option("-q")) 383 self.assertTrue(self.parser.has_option("--silent"))
|
D | test_configparser.py | 246 self.assertFalse(cf.has_option('Spaces', 'key with spaces')) 251 self.assertFalse(cf.has_option('Foo Bar', 'foo'), 256 self.assertTrue(cf.has_option('Foo Bar', 'this_value')) 259 self.assertFalse(cf.has_option('Foo Bar', 'this_value')) 447 self.assertTrue(cf.has_option("a", "b")) 448 self.assertFalse(cf.has_option("b", "b")) 452 cf.has_option("A", opt), 470 self.assertTrue(cf.has_option("section", "Key"))
|
/external/python/cpython2/Lib/test/ |
D | test_optparse.py | 357 self.assertTrue(self.parser.has_option("-v")) 358 self.assertTrue(self.parser.has_option("--verbose")) 366 self.assertFalse(self.parser.has_option("-v")) 367 self.assertFalse(self.parser.has_option("--verbose")) 368 self.assertFalse(self.parser.has_option("-n")) 369 self.assertFalse(self.parser.has_option("--noisy")) 371 self.assertTrue(self.parser.has_option("-q")) 372 self.assertTrue(self.parser.has_option("--silent"))
|
D | test_cfgparser.py | 111 self.assertFalse(cf.has_option('Foo Bar', 'foo'), 135 self.assertTrue(cf.has_option("a", "b")) 139 cf.has_option("A", opt), 155 self.assertTrue(cf.has_option("section", "Key"))
|
/external/yapf/yapf/yapflib/ |
D | style.py | 566 if config.has_option('style', 'based_on_style'): 569 elif config.has_option('yapf', 'based_on_style'):
|
/external/autotest/frontend/afe/ |
D | moblab_rpc_interface_unittest.py | 326 self.assertFalse(shadow_config.has_option('section1', 'opt1')) 328 self.assertFalse(shadow_config.has_option('section1', 'opt2')) 367 self.assertFalse(shadow_config.has_option('section2', 'opt5'))
|
D | moblab_rpc_interface.py | 163 elif existing_shadow.has_option(section, key):
|
/external/autotest/client/bin/ |
D | test_config.py | 72 if not self.parser.has_option(section, option):
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config.py | 754 self.assertFalse(usermain.has_option('Indent', 'use-spaces')) 775 self.assertFalse(usermain.has_option('HelpFiles', 'IDLE')) 776 self.assertTrue(usermain.has_option('HelpFiles', 'ELDI'))
|
/external/python/cpython3/Lib/ |
D | configparser.py | 875 def has_option(self, section, option): member in RawConfigParser 1250 if not self._parser.has_option(self._name, key): 1259 if not (self._parser.has_option(self._name, key) and 1264 return self._parser.has_option(self._name, key)
|
D | optparse.py | 1035 def has_option(self, opt_str): member in OptionContainer
|
/external/swiftshader/third_party/subzero/pydir/ |
D | crosstest_generator.py | 175 if tests.has_option(test, 'flags') else [])
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | componentinfo.py | 449 if not parser.has_option(section, 'type'):
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/llvm-build/llvmbuild/ |
D | componentinfo.py | 449 if not parser.has_option(section, 'type'):
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 376 def has_option(self, section, option): member in RawConfigParser
|
D | optparse.py | 1048 def has_option(self, opt_str): member in OptionContainer
|
/external/curl/tests/python_dependencies/impacket/ |
D | smbserver.py | 2445 if config.has_option('global','rpc_apis'): 4134 if self.__serverConfig.has_option('global', 'challenge'): 4139 if self.__serverConfig.has_option("global", "jtr_dump_path"): 4142 if self.__serverConfig.has_option("global", "SMB2Support"):
|