Home
last modified time | relevance | path

Searched refs:OptionBool (Results 1 – 25 of 77) sorted by relevance

1234

/dports/news/sabnzbdplus/SABnzbd-3.3.0/sabnzbd/
H A Dcfg.py25 OptionBool,
103 configlock = OptionBool("misc", "config_lock", False)
165 top_only = OptionBool("misc", "top_only", False)
166 sfv_check = OptionBool("misc", "sfv_check", True)
172 pre_check = OptionBool("misc", "pre_check", False)
177 fast_fail = OptionBool("misc", "fast_fail", True)
260 ampm = OptionBool("misc", "ampm", False)
278 osx_menu = OptionBool("misc", "osx_menu", True)
279 osx_speed = OptionBool("misc", "osx_speed", True)
283 win_menu = OptionBool("misc", "win_menu", True)
[all …]
H A Dconfig.py172 class OptionBool(Option): class
407 self.ssl = OptionBool(name, "ssl", False, add=False)
411 self.enable = OptionBool(name, "enable", True, add=False)
412 self.optional = OptionBool(name, "optional", False, add=False)
417 self.send_group = OptionBool(name, "send_group", False, add=False)
615 self.enable = OptionBool(name, "enable", add=False)
/dports/sysutils/libdnf/libdnf-0.64.0/libdnf/conf/
H A DConfigMain.hpp55 OptionBool & plugins();
61 OptionBool & reset_nice();
63 OptionBool & cacheonly();
64 OptionBool & keepcache();
82 OptionBool & assumeyes();
83 OptionBool & assumeno();
89 OptionBool & obsoletes();
99 OptionBool & zchunk();
131 OptionBool & countme();
147 OptionBool & gpgcheck();
[all …]
H A DConfigMain.cpp175 OptionBool plugins{true};
181 OptionBool reset_nice{true};
183 OptionBool cacheonly{false};
184 OptionBool keepcache{false};
216 OptionBool assumeno{false};
222 OptionBool obsoletes{true};
232 OptionBool zchunk{true};
291 OptionBool countme{false};
318 OptionBool gpgcheck{false};
320 OptionBool enabled{true};
[all …]
H A DOptionBool.hpp33 class OptionBool : public Option { class
38 OptionBool(bool defaultValue);
39 OptionBool * clone() const override;
59 inline OptionBool * OptionBool::clone() const in clone()
61 return new OptionBool(*this); in clone()
64 inline void OptionBool::test(bool) const {} in test()
66 inline bool OptionBool::getValue() const noexcept in getValue()
71 inline bool OptionBool::getDefaultValue() const noexcept in getDefaultValue()
76 inline std::string OptionBool::getValueString() const in getValueString()
81 inline const char * const * OptionBool::getTrueValues() const noexcept in getTrueValues()
[all …]
H A DConfigRepo.hpp50 OptionChild<OptionBool> & enabled();
60 OptionChild<OptionBool> & fastestmirror();
68 OptionChild<OptionBool> & gpgcheck();
69 OptionChild<OptionBool> & repo_gpgcheck();
70 OptionChild<OptionBool> & enablegroups();
81 OptionBool & module_hotfixes();
83 OptionChild<OptionBool> & sslverify();
87 OptionChild<OptionBool> & proxy_sslverify();
90 OptionChild<OptionBool> & deltarpm();
96 OptionChild<OptionBool> & countme();
[all …]
H A DOptionBool.cpp28 OptionBool::OptionBool(bool defaultValue, const char * const trueVals[], const char * const falseVa… in OptionBool() function in libdnf::OptionBool
32 OptionBool::OptionBool(bool defaultValue) in OptionBool() function in libdnf::OptionBool
33 : OptionBool(defaultValue, nullptr, nullptr) {} in OptionBool()
35 bool OptionBool::fromString(std::string value) const in fromString()
50 void OptionBool::set(Priority priority, bool value) in set()
58 void OptionBool::set(Priority priority, const std::string & value) in set()
63 std::string OptionBool::toString(bool value) const in toString()
H A DConfigRepo.cpp36 OptionChild<OptionBool> enabled{mainConfig.enabled()};
46 OptionChild<OptionBool> fastestmirror{mainConfig.fastestmirror()};
54 OptionChild<OptionBool> gpgcheck{mainConfig.gpgcheck()};
55 OptionChild<OptionBool> repo_gpgcheck{mainConfig.repo_gpgcheck()};
56 OptionChild<OptionBool> enablegroups{mainConfig.enablegroups()};
67 OptionBool module_hotfixes{false};
69 OptionChild<OptionBool> sslverify{mainConfig.sslverify()};
73 OptionChild<OptionBool> proxy_sslverify{mainConfig.proxy_sslverify()};
76 OptionChild<OptionBool> deltarpm{mainConfig.deltarpm()};
81 OptionChild<OptionBool> countme{mainConfig.countme()};
[all …]
/dports/devel/buildstream/BuildStream-1.2.8/buildstream/_options/
H A Doptionbool.py29 class OptionBool(Option): class
35 super(OptionBool, self).load(node)
H A Doptionpool.py26 from .optionbool import OptionBool
34 OptionBool.OPTION_TYPE: OptionBool,
/dports/devel/dtool/dtool-0.11.0/cargo-crates/parity-codec-3.5.4/src/
H A Dcodec.rs681 pub struct OptionBool(pub Option<bool>); struct
683 impl core::fmt::Debug for OptionBool { implementation
689 impl Encode for OptionBool { implementation
692 OptionBool(None) => 0u8, in using_encoded()
693 OptionBool(Some(true)) => 1u8, in using_encoded()
694 OptionBool(Some(false)) => 2u8, in using_encoded()
699 impl Decode for OptionBool { implementation
702 0 => Some(OptionBool(None)), in decode()
703 1 => Some(OptionBool(Some(true))), in decode()
704 2 => Some(OptionBool(Some(false))), in decode()
[all …]
/dports/sysutils/dnf/dnf-4.9.0/dnf/cli/
H A Daliases.py49 option = libdnf.conf.OptionBool(True)
88 option = libdnf.conf.OptionBool(True)
/dports/math/hs-Agda/Agda-2.6.2/_cabal_deps/Cabal-3.0.2.0/Distribution/
H A DTestSuite.hs67 | OptionBool constructor
/dports/devel/hs-cabal-install/cabal-cabal-install-3.4.0.0/Cabal/Distribution/
H A DTestSuite.hs67 | OptionBool constructor
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/Cabal-3.6.0.0/src/Distribution/
H A DTestSuite.hs67 | OptionBool constructor
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/Cabal-3.4.0.0/Distribution/
H A DTestSuite.hs67 | OptionBool constructor
/dports/lang/ghc/ghc-8.10.7/libraries/Cabal/Cabal/Distribution/
H A DTestSuite.hs67 | OptionBool constructor
/dports/print/system-config-printer/system-config-printer-1.5.12/
H A Doptionwidgets.py39 return OptionBool(option, ppd, gui, tab_label=tab_label)
180 class OptionBool(Option): class
/dports/x11-wm/compizconfig-backend-gconf/compizconfig-backend-gconf-0.8.8/settings-backend/
H A Dgconf.c103 OptionBool, enumerator
174 METACITY "/general/visual_bell", OptionBool},
369 METACITY "/general/auto_raise", OptionBool},
373 METACITY "/general/raise_on_click", OptionBool},
378 METACITY "/general/audible_bell", OptionBool},
1014 case OptionBool: in readIntegratedOption()
1527 case OptionBool: in writeIntegratedOption()
/dports/sysutils/dnf/dnf-4.9.0/dnf/automatic/
H A Dmain.py175 self.add_option('apply_updates', libdnf.conf.OptionBool(False))
177 self.add_option('download_updates', libdnf.conf.OptionBool(False))
/dports/textproc/kdiff3/kdiff3-1.9.4/src/
H A DOptionItems.h155 typedef Option<bool> OptionBool; typedef
H A Doptiondialog.cpp62 class OptionCheckBox : public QCheckBox, public OptionBool
67 : QCheckBox(text, pParent), OptionBool(pbVar, bDefaultVal, saveName) in OptionCheckBox()
72 using OptionBool::apply;
79 class OptionRadioButton : public QRadioButton, public OptionBool
84 : QRadioButton(text, pParent), OptionBool(pbVar, bDefaultVal, saveName) in OptionRadioButton()
89 using OptionBool::apply;
/dports/sysutils/libdnf/libdnf-0.64.0/bindings/swig/
H A Dconf.i56 %template(OptionChildBool) libdnf::OptionChild<libdnf::OptionBool>;
364 return OptionBool(False).fromString(v)
/dports/sysutils/dnf/dnf-4.9.0/dnf/conf/
H A Dconfig.py129 elif (isinstance(option, libdnf.conf.OptionBool)
/dports/sysutils/libdnf/libdnf-0.64.0/po/
H A Deu.po64 #: libdnf/conf/OptionBool.cpp:47

1234