Home
last modified time | relevance | path

Searched refs:has_option (Results 1 – 25 of 32) sorted by relevance

12

/external/sonivox/jet_tools/JetCreator/
DJetFile.py274 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 …]
DJetUtils.py256 if config.has_option(section, option):
291 if config.has_option(JetDefs.RECENT_SECTION, sFile):
/external/python/cpython2/Lib/distutils/
Dconfig.py83 if config.has_option(server, key):
93 if config.has_option(server, 'repository'):
Dfancy_getopt.py108 def has_option (self, long_option): member in FancyGetopt
/external/python/cpython3/Lib/distutils/
Dconfig.py81 if config.has_option(server, key):
100 if config.has_option(server, 'repository'):
Dfancy_getopt.py99 def has_option(self, long_option): member in FancyGetopt
/external/python/cpython3/Lib/idlelib/
Dconfig.py59 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/
DconfigHandler.py53 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/
Dtest_optparse.py368 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"))
Dtest_configparser.py246 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/
Dtest_optparse.py357 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"))
Dtest_cfgparser.py111 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/
Dstyle.py566 if config.has_option('style', 'based_on_style'):
569 elif config.has_option('yapf', 'based_on_style'):
/external/autotest/frontend/afe/
Dmoblab_rpc_interface_unittest.py326 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'))
Dmoblab_rpc_interface.py163 elif existing_shadow.has_option(section, key):
/external/autotest/client/bin/
Dtest_config.py72 if not self.parser.has_option(section, option):
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config.py754 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/
Dconfigparser.py875 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)
Doptparse.py1035 def has_option(self, opt_str): member in OptionContainer
/external/swiftshader/third_party/subzero/pydir/
Dcrosstest_generator.py175 if tests.has_option(test, 'flags') else [])
/external/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py449 if not parser.has_option(section, 'type'):
/external/swiftshader/third_party/llvm-7.0/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py449 if not parser.has_option(section, 'type'):
/external/python/cpython2/Lib/
DConfigParser.py376 def has_option(self, section, option): member in RawConfigParser
Doptparse.py1048 def has_option(self, opt_str): member in OptionContainer
/external/curl/tests/python_dependencies/impacket/
Dsmbserver.py2445 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"):

12