Home
last modified time | relevance | path

Searched refs:Option (Results 1 – 25 of 234) sorted by relevance

12345678910

/freebsd/contrib/libfido2/windows/
H A Dconst.ps19 -Option Constant
17 -Option Constant
20 New-Variable -Name 'ZLIB' -Value 'zlib-1.3' -Option Constant
21 New-Variable -Name 'ZLIB_BRANCH' -Value 'v1.3' -Option Constant
23 -Option Constant
35 New-Variable -Name 'RUNTIME' -Value '/MD' -Option Constant
36 New-Variable -Name 'SHARED' -Value 'ON' -Option Constant
40 New-Variable -Name 'RUNTIME' -Value '/MT' -Option Constant
41 New-Variable -Name 'SHARED' -Value 'OFF' -Option Constant
46 -Option Constant
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td4 def tm_sort : Option<"sort", "s">, Group<1>,
12 def tm_json : Option<"json", "j">, Group<1>,
28 def setset_global : Option<"global", "g">,
30 def setset_force : Option<"force", "f">,
32 def setset_exists : Option<"exists", "e">,
41 def setwrite_append : Option<"append", "a">,
52 def setclear_all : Option<"all", "a">,
59 def blist_internal : Option<"internal", "i">,
110 Option<"dummy-breakpoints", "D">, Group<1>,
1218 Option<"recognizer-function", "\\x01">,
[all …]
H A DOptionsBase.td6 // Default value: LLDB_OPT_SET_ALL (Option allowed in all groups)
9 // Example: def foo : Option<"foo", "f">, Group<1>;
23 // Default value: not available (has to be defined in Option)
25 // - `Option` constructor: Already set by constructor.
31 // Default value: not available (has to be defined in Option)
33 // - `Option` constructor: Already set by constructor.
60 // Example: def foo : Option<"foo", "f">,
68 // Example: def foo : Option<"foo", "f">,
73 // Example: def foo : Option<"foo", "f">,
93 // Example: def foo : Option<"foo", "f">,
[all …]
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp27 Record *Option; member
260 unsigned NumArgs = getNumArgsForKind(Option->getValueAsDef("Kind"), Option); in emitOptionName()
311 F(Option.Option); in forEachOptionName()
313 for (auto *Alias : Option.Aliases) in forEachOptionName()
315 canSphinxCopeWithOption(Option.Option)) in forEachOptionName()
321 if (Option.Option->getValueAsDef("Kind")->getName() == "KIND_UNKNOWN" || in emitOption()
322 Option.Option->getValueAsDef("Kind")->getName() == "KIND_INPUT") in emitOption()
324 if (!canSphinxCopeWithOption(Option.Option)) in emitOption()
331 forEachOptionName(Option, DocInfo, [&](const Record *Option) { in emitOption() argument
352 forEachOptionName(Option, DocInfo, [&](const Record *Option) { in emitOption() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp72 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) && in operator <()
113 Option::OptionClass Kind = (Option::OptionClass) getInfo(i + 1).Kind; in OptTable()
114 assert((Kind != Option::InputClass && Kind != Option::UnknownClass && in OptTable()
179 if (Option.slice(0, Option.size() - In.getName().size()) == Prefix) in optionMatches()
261 assert(!Option.empty()); in internalFindNearest()
605 case Option::GroupClass: case Option::InputClass: case Option::UnknownClass: in getOptionHelpName()
622 case Option::FlagClass: in getOptionHelpName()
625 case Option::ValuesClass: in getOptionHelpName()
628 case Option::SeparateClass: case Option::JoinedOrSeparateClass: in getOptionHelpName()
629 case Option::RemainingArgsClass: case Option::RemainingArgsJoinedClass: in getOptionHelpName()
[all …]
H A DOption.cpp26 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option() function in Option
41 void Option::print(raw_ostream &O, bool AddNewLine) const { in print()
70 const Option Group = getGroup(); in print()
76 const Option Alias = getAlias(); in print()
91 LLVM_DUMP_METHOD void Option::dump() const { print(dbgs()); } in dump()
94 bool Option::matches(OptSpecifier Opt) const { in matches()
96 const Option Alias = getAlias(); in matches()
104 const Option Group = getGroup(); in matches()
110 std::unique_ptr<Arg> Option::acceptInternal(const ArgList &Args, in acceptInternal()
234 std::unique_ptr<Arg> Option::accept(const ArgList &Args, StringRef CurArg, in accept()
[all …]
H A DArg.cpp21 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const Arg *BaseArg) in Arg()
25 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0, in Arg()
32 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0, in Arg()
96 case Option::RenderValuesStyle: in render()
100 case Option::RenderCommaJoinedStyle: { in render()
112 case Option::RenderJoinedStyle: in render()
118 case Option::RenderSeparateStyle: in render()
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp38 CommandOption(Record *Option) { in CommandOption()
39 if (Option->getValue("Groups")) { in CommandOption()
41 auto Groups = Option->getValueAsListOfInts("Groups"); in CommandOption()
44 } else if (Option->getValue("GroupStart")) { in CommandOption()
47 int GroupStart = Option->getValueAsInt("GroupStart"); in CommandOption()
48 int GroupEnd = Option->getValueAsInt("GroupEnd"); in CommandOption()
54 Required = Option->getValue("Required"); in CommandOption()
60 if (auto A = Option->getValue("ArgType")) in CommandOption()
64 if (Option->getValue("Validator")) in CommandOption()
67 if (Option->getValue("Completions")) in CommandOption()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp54 for (const CmdLineOption &Option : CmdLineOptions) { in dumpToStream() local
56 Option.dumpToStream(Out); in dumpToStream()
74 for (const CmdLineOption &Option : CmdLineOptions) { in dumpToStream() local
76 Option.dumpToStream(Out); in dumpToStream()
192 OptionMap.insert({Checker.FullName, Option}); in printCheckerOptionList()
198 OptionMap.insert({Package.FullName, Option}); in printCheckerOptionList()
212 const CmdLineOption &Option = Entry.second; in printCheckerOptionList() local
216 ("(" + Option.OptionType + ") " + Option.Description + " (default: " + in printCheckerOptionList()
217 (Option.DefaultValStr.empty() ? "\"\"" : Option.DefaultValStr) + ")") in printCheckerOptionList()
224 if (Option.IsHidden) { in printCheckerOptionList()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h98 class Option; variable
235 StringMap<Option *> OptionsMap;
257 class Option {
353 virtual ~Option() = default;
821 Option &Owner;
1252 const Option &O,
1429 : public Option,
1920 class alias : public Option {
1921 Option *AliasFor;
1980 Option &Opt;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp82 void Option::anchor() {} in anchor()
285 void removeOption(Option *O) { in removeOption()
352 Option *O = E.second; in registerSubCommand()
415 void Option::addArgument() { in addArgument()
442 void Option::reset() { in reset()
567 Option *Best = nullptr; in LookupNearestOption()
572 Option *O = it->second; in LookupNearestOption()
730 static Option *
1465 for (Option *O : SC->SinkOpts) in ResetAllOptionOccurrences()
1590 Option *Handler = nullptr; in ParseCommandLineOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h31 class Option; variable
129 const Option getOption(OptSpecifier Opt) const;
177 std::vector<std::string> suggestValueCompletions(StringRef Option,
206 unsigned findNearest(StringRef Option, std::string &NearestString,
211 unsigned findNearest(StringRef Option, std::string &NearestString,
218 internalFindNearest(StringRef Option, std::string &NearestString,
223 bool findExact(StringRef Option, std::string &ExactString,
225 return findNearest(Option, ExactString, VisibilityMask, 4, 0) == 0;
228 bool findExact(StringRef Option, std::string &ExactString,
230 return findNearest(Option, ExactString, FlagsToInclude, FlagsToExclude, 4,
[all …]
H A DOption.h54 class Option {
84 Option(const OptTable::Info *Info, const OptTable *Owner);
106 const Option getGroup() const { in getGroup()
112 const Option getAlias() const { in getAlias()
196 const Option getUnaliasedOption() const { in getUnaliasedOption()
197 const Option Alias = getAlias(); in getUnaliasedOption()
H A DArg.h37 const Option Opt;
73 Arg(const Option Opt, StringRef Spelling, unsigned Index,
75 Arg(const Option Opt, StringRef Spelling, unsigned Index,
77 Arg(const Option Opt, StringRef Spelling, unsigned Index,
83 const Option &getOption() const { return Opt; } in getOption()
H A DOptParser.td110 Option Alias = ?;
131 : Option<prefixes, name, KIND_FLAG>;
133 : Option<prefixes, name, KIND_JOINED>;
135 : Option<prefixes, name, KIND_SEPARATE>;
137 : Option<prefixes, name, KIND_COMMAJOINED>;
139 : Option<prefixes, name, KIND_MULTIARG> {
143 : Option<prefixes, name, KIND_JOINED_OR_SEPARATE>;
145 : Option<prefixes, name, KIND_JOINED_AND_SEPARATE>;
149 class Alias<Option alias> { Option Alias = alias; }
262 def INPUT : Option<[], "<input>", KIND_INPUT>;
[all …]
/freebsd/usr.bin/posixmqcontrol/
H A Dposixmqcontrol.c346 struct Option { struct
369 const struct Option **cursor = options; in parse_options()
372 const struct Option *option = cursor[0]; in parse_options()
409 const struct Option *option = options[0]; in validate_options()
749 static const struct Option option_queue = {
758 static const struct Option option_depth = {
763 static const struct Option option_size = {
768 static const struct Option option_block = {
784 static const struct Option option_mode = {
789 static const struct Option option_group = {
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAttr.cpp99 LoopHintAttr::OptionType Option; in handleLoopHintAttr() local
104 Option = O; in handleLoopHintAttr()
142 if (Option == LoopHintAttr::VectorizeWidth) { in handleLoopHintAttr()
158 } else if (Option == LoopHintAttr::Vectorize || in handleLoopHintAttr()
159 Option == LoopHintAttr::Interleave || in handleLoopHintAttr()
161 Option == LoopHintAttr::Unroll || in handleLoopHintAttr()
467 switch (Option) { in CheckForIncompatibleAttributes()
500 if (Option == LoopHintAttr::Vectorize || in CheckForIncompatibleAttributes()
501 Option == LoopHintAttr::Interleave || Option == LoopHintAttr::Unroll || in CheckForIncompatibleAttributes()
502 Option == LoopHintAttr::UnrollAndJam || in CheckForIncompatibleAttributes()
[all …]
/freebsd/contrib/kyua/utils/cmdline/
H A Dparser.hpp67 template< typename Option >
68 typename Option::option_type get_option(const std::string&) const;
70 template< typename Option >
71 std::vector< typename Option::option_type > get_multi_option(
H A Dparser.ipp49 template< typename Option > typename Option::option_type
53 return Option::convert(raw_values[raw_values.size() - 1]);
68 template< typename Option > std::vector< typename Option::option_type >
71 std::vector< typename Option::option_type > values;
76 values.push_back(Option::convert(*iter));
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStateMachine.java95 consumer.getOption(Option.bufsize); in beforeOpen()
104 consumer.setOption(Option.bufsize, Option.mb(1)); in beforeOpen()
113 consumer.unsetOption(Option.quiet); in beforeOpen()
357 consumer.getOption(Option.quiet); in afterGo()
358 consumer.setOption(Option.quiet); in afterGo()
359 consumer.unsetOption(Option.quiet); in afterGo()
401 consumer.getOption(Option.quiet); in afterStop()
402 consumer.setOption(Option.quiet); in afterStop()
403 consumer.unsetOption(Option.quiet); in afterStop()
451 consumer.getOption(Option.bufsize); in afterClose()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DInstallNameToolOpts.td13 include "llvm/Option/OptParser.td"
18 def add_rpath : Option<["-", "--"], "add_rpath", KIND_SEPARATE>,
21 def prepend_rpath : Option<["-", "--"], "prepend_rpath", KIND_SEPARATE>,
24 def delete_rpath: Option<["-", "--"], "delete_rpath", KIND_SEPARATE>,
33 def id : Option<["-","--"], "id", KIND_SEPARATE>,
/freebsd/usr.sbin/cron/crontab/
H A Dcrontab.c51 static enum opt_t Option; variable
94 switch (Option) { in main()
129 Option = opt_unknown; in parse_args()
146 if (Option != opt_unknown) in parse_args()
148 Option = opt_list; in parse_args()
151 if (Option != opt_unknown) in parse_args()
153 Option = opt_delete; in parse_args()
156 if (Option != opt_unknown) in parse_args()
158 Option = opt_edit; in parse_args()
170 if (Option != opt_unknown) { in parse_args()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DIntegerLiteralSeparatorFixer.cpp61 const auto &Option = Style.IntegerLiteralSeparator; in process() local
62 const auto Binary = Option.Binary; in process()
63 const auto Decimal = Option.Decimal; in process()
64 const auto Hex = Option.Hex; in process()
73 std::max((int)Option.BinaryMinDigits, Binary + 1); in process()
75 std::max((int)Option.DecimalMinDigits, Decimal + 1); in process()
76 const auto HexMinDigits = std::max((int)Option.HexMinDigits, Hex + 1); in process()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java708 dtrace.setOption(Option.bufsize, Option.mb(4)); in main()
709 dtrace.setOption(Option.aggsize, Option.mb(4)); in main()
721 dtrace.setOption(Option.cpp); in main()
737 dtrace.setOption(Option.flowindent); in main()
806 dtrace.setOption(Option.quiet); in main()
824 dtrace.setOption(Option.destructive); in main()
835 dtrace.setOption(Option.stdc, g.getOptarg()); in main()
838 dtrace.setOption(Option.zdefs); in main()
884 quiet = (dtrace.getOption(Option.quiet) != Option.UNSET); in main()
885 flow = (dtrace.getOption(Option.flowindent) != Option.UNSET); in main()
[all …]
/freebsd/usr.bin/vi/catalog/
H A Dgerman.UTF-8.base30 031 "Setzen der Voreinstellung für %s Option nicht möglich"
33 034 "set: der [no]%s Option kann kein Wert zugewiesen werden"
34 035 "set: %s ist keine Boolsche Option"
35 036 "set: %s Option: %s"
36 037 "set: %s Option: %s: Werte-Überlauf"
37 038 "set: %s Option: %s ist eine ungültige Zahl"
38 039 "set: %s ist keine Boolsche Option"
43 044 "Die lisp-Option ist nicht implementiert"
46 047 "Die %s-Option muß Gruppen zu zwei Zeichen enthalten"
145 152 "shiftwidth Option auf 0 gesetzt"
[all …]

12345678910