Searched refs:config_type (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/idlelib/ |
D | config.py | 820 for config_type in idleConf.config_types: 821 self[config_type] = {} 822 self.pages.append(self[config_type]) 824 def add_option(self, config_type, section, item, value): argument 826 page = self[config_type] 833 def save_option(config_type, section, item, value): argument 838 if idleConf.defaultCfg[config_type].has_option(section, item): 839 if idleConf.defaultCfg[config_type].Get(section, item) == value: 841 return idleConf.userCfg[config_type].RemoveOption(section, item) 843 return idleConf.userCfg[config_type].SetOption(section, item, value) [all …]
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | exceptions.py | 12 def __init__(self, config_type, config_file): argument 13 if not config_type: 18 'by the dependency manager.' % (config_file, config_type))
|
D | base_config.py | 109 config_type = config_data.pop('config_type', None) 110 if config_type != self.GetConfigType(): 113 '%s' % (config_type, self.GetConfigType(), file_path))
|
D | base_config_unittest.py | 1393 self.config_type = 'BaseConfig' 1397 self.empty_dict = {'config_type': self.config_type, 1435 self.one_dep_dict = {'config_type': self.config_type, 1451 self.assertEqual(self.config_type, config.GetConfigType()) 1466 self.assertEqual(self.config_type, config.GetConfigType())
|
/external/u-boot/drivers/ddr/marvell/axp/ |
D | ddr3_init.h | 82 typedef enum config_type { enum 105 int ddr3_check_config(u32 addr, MV_CONFIG_TYPE config_type);
|
D | ddr3_init.c | 909 int ddr3_check_config(u32 twsi_addr, MV_CONFIG_TYPE config_type) in ddr3_check_config() argument 916 if ((config_type == CONFIG_ECC) || (config_type == CONFIG_BUS_WIDTH)) in ddr3_check_config() 923 switch (config_type) { in ddr3_check_config()
|
/external/autotest/server/cros/chaos_lib/ |
D | chaos_parser.py | 266 def print_config_failures(self, config_type, security, config_csv_list): argument 277 print('%s config failures for security: %s' % (config_type, security))
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config.py | 300 for config_type, parser in conf.defaultCfg.items(): 302 os.path.join(idle_dir, 'config-%s.def' % config_type)) 303 for config_type, parser in conf.userCfg.items(): 305 os.path.join(conf.userdir, 'config-%s.cfg' % config_type))
|
/external/kmod/libkmod/ |
D | libkmod-config.c | 910 enum config_type { enum 920 enum config_type type; 936 enum config_type type) in kmod_config_iter_new()
|