Home
last modified time | relevance | path

Searched refs:mkFlag (Results 1 – 25 of 36) sorted by relevance

12

/dports/sysutils/nix/nix-2.3.10/src/libmain/
H A Dcommon-args.cc9 mkFlag() in MixCommonArgs()
15 mkFlag() in MixCommonArgs()
20 mkFlag() in MixCommonArgs()
25 mkFlag() in MixCommonArgs()
38 mkFlag() in MixCommonArgs()
H A Dshared.cc168 mkFlag() in LegacyArgs()
174 mkFlag() in LegacyArgs()
180 mkFlag() in LegacyArgs()
186 mkFlag() in LegacyArgs()
193 mkFlag<unsigned int>(shortName, longName, description, [=](unsigned int n) { in LegacyArgs()
202 mkFlag(0, "readonly-mode", "do not write to the Nix store", in LegacyArgs()
205 mkFlag(0, "no-gc-warning", "disable warning about not using '--add-root'", in LegacyArgs()
208 mkFlag() in LegacyArgs()
H A Dcommon-args.hh19 mkFlag(0, "dry-run", "show what this command would do without doing it", &dryRun); in MixDryRun()
29 mkFlag(0, "json", "produce JSON output", &json); in MixJSON()
/dports/sysutils/nix/nix-2.3.10/src/libutil/
H A Dargs.hh110 FlagMaker mkFlag();
119 mkFlag() in mkFlag1()
128 void mkFlag(char shortName, const std::string & name, in mkFlag() function in nix::Args
131 mkFlag(shortName, name, description, dest, true); in mkFlag()
135 void mkFlag(char shortName, const std::string & longName, const std::string & description, in mkFlag() function in nix::Args
138 mkFlag() in mkFlag()
149 mkFlag<I>(shortName, longName, description, [=](I n) { in mkIntFlag()
155 void mkFlag(char shortName, const std::string & longName, in mkFlag() function in nix::Args
158 mkFlag() in mkFlag()
H A Dconfig.cc175 args.mkFlag() in convertToArg()
225 args.mkFlag() in convertToArg()
230 args.mkFlag() in convertToArg()
/dports/sysutils/nix/nix-2.3.10/src/nix/
H A Dcopy.cc22 mkFlag() in CmdCopy()
27 mkFlag() in CmdCopy()
33 mkFlag() in CmdCopy()
38 mkFlag() in CmdCopy()
H A Dhash.cc19 mkFlag(0, "sri", "print hash in SRI format", &base, SRI); in CmdHash()
20 mkFlag(0, "base64", "print hash in base-64", &base, Base64); in CmdHash()
21 mkFlag(0, "base32", "print hash in base-32 (Nix-specific)", &base, Base32); in CmdHash()
22 mkFlag(0, "base16", "print hash in base-16", &base, Base16); in CmdHash()
23 mkFlag() in CmdHash()
63 mkFlag() in CmdToBase()
H A Dmain.cc61 mkFlag() in NixArgs()
66 mkFlag() in NixArgs()
80 mkFlag() in NixArgs()
86 mkFlag() in NixArgs()
91 mkFlag() in NixArgs()
H A Dpath-info.cc21 mkFlag('s', "size", "print size of the NAR dump of each path", &showSize); in CmdPathInfo()
22mkFlag('S', "closure-size", "print sum size of the NAR dumps of the closure of each path", &showCl… in CmdPathInfo()
23mkFlag('h', "human-readable", "with -s and -S, print sizes like 1K 234M 5.67G etc.", &humanReadabl… in CmdPathInfo()
24 mkFlag(0, "sigs", "show signatures", &showSigs); in CmdPathInfo()
H A Drun.cc30 mkFlag() in CmdRun()
41 mkFlag() in CmdRun()
47 mkFlag() in CmdRun()
55 mkFlag() in CmdRun()
H A Dcommand.cc106 mkFlag() in StorePathsCommand()
111 mkFlag() in StorePathsCommand()
117 mkFlag(0, "all", "apply operation to the entire store", &all); in StorePathsCommand()
H A Dls.cc20 mkFlag('R', "recursive", "list subdirectories recursively", &recursive); in MixLs()
21 mkFlag('l', "long", "show more file information", &verbose); in MixLs()
22 mkFlag('d', "directory", "show directories rather than their contents", &showDirectory); in MixLs()
H A Dbuild.cc14 mkFlag() in CmdBuild()
21 mkFlag() in CmdBuild()
H A Dverify.cc20 mkFlag(0, "no-contents", "do not verify the contents of each store path", &noContents); in CmdVerify()
21 mkFlag(0, "no-trust", "do not verify whether each store path is trusted", &noTrust); in CmdVerify()
22 mkFlag() in CmdVerify()
H A Dsigs.cc16 mkFlag() in CmdCopySigs()
104 mkFlag() in CmdSignPaths()
H A Dupgrade-nix.cc19 mkFlag() in CmdUpgradeNix()
26 mkFlag() in CmdUpgradeNix()
H A Deval.cc18 mkFlag(0, "raw", "print strings unquoted", &raw); in CmdEval()
H A Dadd-to-store.cc17 mkFlag() in CmdAddToStore()
/dports/devel/hs-darcs/darcs-2.16.4/src/Darcs/UI/
H A DDefaults.hs201 flag_from (NoArg mkFlag) = do
206 return $ Just $ mkFlag cwd
207 flag_from (OptArg mkFlag _) =
208 return $ Just $ mkFlag (if null arg then Nothing else Just arg) cwd
209 flag_from (ReqArg mkFlag _) = do
214 return $ Just $ mkFlag arg cwd
/dports/sysutils/nix/nix-2.3.10/src/libexpr/
H A Dcommon-eval-args.cc11 mkFlag() in MixEvalArgs()
17 mkFlag() in MixEvalArgs()
23 mkFlag() in MixEvalArgs()
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/hspec-core-2.7.10/src/Test/Hspec/Core/Config/
H A DOptions.hs136 mkFlag :: Monad m => String -> (Bool -> Config -> Config) -> String -> [OptDescr (Result m -> Resul…
137 mkFlag name setter help = [ function
155 , mkFlag "color" setColor "colorize the output"
156 , mkFlag "diff" setDiff "show colorized diffs"
201 mkFlag "dry-run" setDryRun "pretend that everything passed; don't verify anything"
202 , mkFlag "focused-only" setFocusedOnly "do not run anything, unless there are focused spec items"
203 , mkFlag "fail-on-focused" setFailOnFocused "fail on focused spec items"
204 , mkFlag "fail-fast" setFastFail "abort on first failure"
205 , mkFlag "randomize" setRandomize "randomize execution order"
/dports/lang/ghc/ghc-8.10.7/libraries/Cabal/cabal-install/Distribution/Solver/Modular/
H A DFlag.hs13 , mkFlag
44 mkFlag :: String -> Flag
45 mkFlag = P.mkFlagName function
/dports/devel/hs-cabal-install/cabal-cabal-install-3.4.0.0/cabal-install/Distribution/Solver/Modular/
H A DFlag.hs13 , mkFlag
44 mkFlag :: String -> Flag
45 mkFlag = P.mkFlagName function
/dports/sysutils/nix/nix-2.3.10/src/libstore/
H A Dglobals.cc141 args.mkFlag() in convertToArg()
146 args.mkFlag() in convertToArg()
151 args.mkFlag() in convertToArg()
/dports/devel/hs-mueval/mueval-0.9.3/_cabal_deps/hint-0.9.0.3/src/Hint/
H A DConfiguration.hs90 extFlag = mkFlag
91 where mkFlag b (UnknownExtension o) = strToFlag b o function
92 mkFlag b o = strToFlag b (show o) function

12