Home
last modified time | relevance | path

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

/dports/games/freeorion/freeorion-0.4.10.2/util/
H A DOptionsDB.cpp362 options_by_section[section_name].emplace(option.first); in OptionsBySection()
375 options_by_section["root"].emplace(root_name); in OptionsBySection()
382 if (section_option_it == options_by_section.end()) in OptionsBySection()
386 options_by_section.erase(section_it.first); in OptionsBySection()
390 return options_by_section; in OptionsBySection()
400 if (options_by_section.count("root")) in GetUsage()
401 options_by_section.erase("root"); in GetUsage()
421 auto root_it = options_by_section.find("root"); in GetUsage()
422 if (root_it != options_by_section.end()) { in GetUsage()
429 for (const auto& it : options_by_section) in GetUsage()
[all …]
/dports/devel/pylint/pylint-2.12.1/pylint/config/
H A Doption_manager_mixin.py198 options_by_section: Dict[str, List[Tuple]] = {}
201 for section, options in provider.options_by_section():
215 alloptions = options_by_section.setdefault(section, [])
223 stream, section.upper(), sorted(options_by_section[section])
H A Doptions_provider_mixin.py92 def options_by_section(self): member in OptionsProviderMixIn
/dports/devel/pylint/pylint-2.12.1/pylint/utils/
H A Ddocs.py47 for section, options in checker.options_by_section():
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/logilab/logilab/common/
H A Dconfiguration.py561 options_by_section = {}
564 for section, options in provider.options_by_section():
575 alloptions = options_by_section.setdefault(section, [])
583 format_section(stream, section.upper(), options_by_section[section],
893 for section, options in self.options_by_section():
901 def options_by_section(self): member in OptionsProviderMixIn
/dports/devel/py-logilab-common/logilab-common-1.8.2/logilab/common/
H A Dconfiguration.py665 options_by_section: Dict[Any, List] = {}
669 for section, options in provider.options_by_section():
679 alloptions = options_by_section.setdefault(section, [])
687 format_section(stream, section.upper(), options_by_section[section], encoding)
1031 for section, options in self.options_by_section():
1039 def options_by_section(self) -> Iterator[Any]: member in OptionsProviderMixIn
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pylint/pylint/
H A Dutils.py419 for section, options in checker.options_by_section():