Home
last modified time | relevance | path

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

12345678910>>...25

/netbsd-src/external/bsd/libfido2/dist/windows/
H A Dconst.ps19 -Option Constant
10 New-Variable -Name 'LIBRESSL' -Value 'libressl-3.6.2' -Option Constant
11 New-Variable -Name 'CRYPTO_LIBRARIES' -Value 'crypto-50' -Option Constant
14 New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.10.1' -Option Constant
15 New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.10.1' -Option Constant
17 -Option Constant
20 New-Variable -Name 'ZLIB' -Value 'zlib-1.2.13' -Option Constant
21 New-Variable -Name 'ZLIB_BRANCH' -Value 'v1.2.13' -Option Constant
23 -Option Constant
26 New-Variable -Name 'BUILD' -Value "$PSScriptRoot\..\build" -Option Constant
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp27 Record *Option; member
154 unsigned getNumArgsForKind(Record *OptionKind, const Record *Option) { in getNumArgsForKind() argument
160 .Case("KIND_MULTIARG", Option->getValueAsInt("NumArgs")) in getNumArgsForKind()
196 bool canSphinxCopeWithOption(const Record *Option) { in canSphinxCopeWithOption() argument
199 for (char C : Option->getValueAsString("Name")) in canSphinxCopeWithOption()
227 void emitOptionWithArgs(StringRef Prefix, const Record *Option, in emitOptionWithArgs() argument
229 OS << Prefix << escapeRST(Option->getValueAsString("Name")); in emitOptionWithArgs()
232 getSeparatorsForKind(Option->getValueAsDef("Kind")); in emitOptionWithArgs()
241 void emitOptionName(StringRef Prefix, const Record *Option, raw_ostream &OS) { in emitOptionName() argument
243 unsigned NumArgs = getNumArgsForKind(Option->getValueAsDef("Kind"), Option); in emitOptionName()
[all …]
/netbsd-src/external/mit/xorg/etc/etc.hpc/
H A Dxorg.conf.800x600-us17 Option "AutoAddDevices" "false"
23 Option "XkbLayout" "us"
24 # Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 # Option "MaxX" "639"
36 Option "MaxX" "799"
38 Option "MinY" "0"
39 # Option "MaxY" "239"
[all …]
H A Dxorg.conf.800x600-jp17 Option "AutoAddDevices" "false"
23 # Option "XkbLayout" "us"
24 Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 # Option "MaxX" "639"
36 Option "MaxX" "799"
38 Option "MinY" "0"
39 # Option "MaxY" "239"
[all …]
H A Dxorg.conf.640x240-us17 Option "AutoAddDevices" "false"
23 Option "XkbLayout" "us"
24 # Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 Option "MaxX" "639"
36 # Option "MaxX" "799"
38 Option "MinY" "0"
39 Option "MaxY" "239"
[all …]
H A Dxorg.conf.640x480-us17 Option "AutoAddDevices" "false"
23 Option "XkbLayout" "us"
24 # Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 Option "MaxX" "639"
36 # Option "MaxX" "799"
38 Option "MinY" "0"
39 # Option "MaxY" "239"
[all …]
H A Dxorg.conf.640x240-jp17 Option "AutoAddDevices" "false"
23 # Option "XkbLayout" "us"
24 Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 Option "MaxX" "639"
36 # Option "MaxX" "799"
38 Option "MinY" "0"
39 Option "MaxY" "239"
[all …]
H A Dxorg.conf.640x480-jp17 Option "AutoAddDevices" "false"
23 # Option "XkbLayout" "us"
24 Option "XkbLayout" "jp"
25 # Option "XkbModel" "foo"
32 Option "Device" "/dev/wsmouse0"
34 Option "MinX" "0"
35 Option "MaxX" "639"
36 # Option "MaxX" "799"
38 Option "MinY" "0"
39 # Option "MaxY" "239"
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Option/
H A DOptTable.cpp82 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) && in operator <()
84 return B.Kind == Option::JoinedClass; in operator <()
96 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} in OptSpecifier()
106 if (Kind == Option::InputClass) { in OptTable()
109 } else if (Kind == Option::UnknownClass) { in OptTable()
112 } else if (Kind != Option::GroupClass) { in OptTable()
123 Option::OptionClass Kind = (Option::OptionClass) getInfo(i + 1).Kind; in OptTable()
124 assert((Kind != Option::InputClass && Kind != Option::UnknownClass && in OptTable()
125 Kind != Option::GroupClass) && in OptTable()
162 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
[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) const { in print()
71 const Option Group = getGroup(); in print()
77 const Option Alias = getAlias(); in print()
90 LLVM_DUMP_METHOD void Option::dump() const { print(dbgs()); } in dump()
93 bool Option::matches(OptSpecifier Opt) const { in matches()
95 const Option Alias = getAlias(); in matches()
103 const Option Group = getGroup(); in matches()
109 Arg *Option::acceptInternal(const ArgList &Args, StringRef Spelling, in acceptInternal()
233 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()
98 case Option::RenderValuesStyle: in render()
102 case Option::RenderCommaJoinedStyle: { in render()
114 case Option::RenderJoinedStyle: in render()
120 case Option::RenderSeparateStyle: in render()
/netbsd-src/external/mit/xorg/etc/etc.hpcarm/
H A Dxorg.conf.ws011sh17 Option "AutoAddDevices" "false"
23 # Option "XkbModel" "ws003sh"
24 # Option "XkbModel" "ws007sh"
25 Option "XkbModel" "ws011sh"
26 # Option "XkbModel" "ws020sh"
33 Option "Device" "/dev/wsmouse0"
35 Option "MinX" "0"
36 Option "MaxX" "479"
39 Option "MinY" "0"
40 # Option "MaxY" "639"
[all …]
H A Dxorg.conf.ws003sh17 Option "AutoAddDevices" "false"
23 Option "XkbModel" "ws003sh"
24 # Option "XkbModel" "ws007sh"
25 # Option "XkbModel" "ws011sh"
26 # Option "XkbModel" "ws020sh"
33 Option "Device" "/dev/wsmouse0"
35 Option "MinX" "0"
36 Option "MaxX" "479"
39 Option "MinY" "0"
40 Option "MaxY" "639"
[all …]
H A Dxorg.conf.ws007sh17 Option "AutoAddDevices" "false"
23 # Option "XkbModel" "ws003sh"
24 Option "XkbModel" "ws007sh"
25 # Option "XkbModel" "ws011sh"
26 # Option "XkbModel" "ws020sh"
33 Option "Device" "/dev/wsmouse0"
35 Option "MinX" "0"
36 Option "MaxX" "479"
39 Option "MinY" "0"
40 Option "MaxY" "639"
[all …]
H A Dxorg.conf.ws020sh17 Option "AutoAddDevices" "false"
23 # Option "XkbModel" "ws003sh"
24 # Option "XkbModel" "ws007sh"
25 # Option "XkbModel" "ws011sh"
26 Option "XkbModel" "ws020sh"
33 Option "Device" "/dev/wsmouse0"
35 Option "MinX" "0"
36 Option "MaxX" "479"
39 Option "MinY" "0"
40 # Option "MaxY" "639"
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h103 class Option; variable
112 void AddLiteralOption(Option &O, StringRef Name);
233 SmallVector<Option *, 4> PositionalOpts;
234 SmallVector<Option *, 4> SinkOpts;
235 StringMap<Option *> OptionsMap;
237 Option *ConsumeAfterOpt = nullptr; // The ConsumeAfter option if it exists.
249 class Option {
340 explicit Option(enum NumOccurrencesFlag OccurrencesFlag, in Option() function
351 virtual ~Option() = default;
419 void apply(Option &O) const { O.setDescription(Desc); } in apply()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
191 for (const CmdLineOption &Option : Checker.CmdLineOptions) { in printCheckerOptionList() local
192 OptionMap.insert({Checker.FullName, Option}); in printCheckerOptionList()
197 for (const CmdLineOption &Option : Package.CmdLineOptions) { in printCheckerOptionList() local
198 OptionMap.insert({Package.FullName, Option}); in printCheckerOptionList()
212 const CmdLineOption &Option = Entry.second; in printCheckerOptionList() local
213 std::string FullOption = (Entry.first + ":" + Option.OptionName).str(); in printCheckerOptionList()
[all …]
/netbsd-src/external/mit/xorg/etc/etc.zaurus/
H A Dxorg.conf.C7x016 Option "AutoAddDevices" "false"
22 Option "XkbModel" "sl-c3x00"
29 Option "device" "/dev/wsmouse"
30 Option "ZAxisMapping" "4 5"
32 Option "MinX" "0"
33 Option "MaxX" "639"
34 Option "MinY" "0"
35 Option "MaxY" "479"
37 # Option "Rotate" "CW"
44 # Option "Rotate" "CW"
H A Dxorg.conf.C3x0016 Option "AutoAddDevices" "false"
22 Option "XkbModel" "sl-c3x00"
29 Option "device" "/dev/wsmouse"
30 Option "ZAxisMapping" "4 5"
32 Option "MinX" "0"
33 Option "MaxX" "479"
34 Option "MinY" "0"
35 Option "MaxY" "639"
37 Option "Rotate" "CW"
44 Option "Rotate" "CW"
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp82 void Option::anchor() {} in anchor()
122 static inline bool isGrouping(const Option *O) { in isGrouping()
125 static inline bool isPrefixedOrGrouping(const Option *O) { in isPrefixedOrGrouping()
159 SmallVector<Option*, 4> DefaultOptions;
178 void addLiteralOption(Option &Opt, SubCommand *SC, StringRef Name) { in addLiteralOption()
198 void addLiteralOption(Option &Opt, StringRef Name) { in addLiteralOption()
207 void addOption(Option *O, SubCommand *SC) { in addOption()
254 void addOption(Option *O, bool ProcessDefaultOption = false) { in addOption()
268 void removeOption(Option *O, SubCommand *SC) { in removeOption()
301 void removeOption(Option *O) { in removeOption()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAttr.cpp93 LoopHintAttr::OptionType Option; in handleLoopHintAttr() local
96 auto SetHints = [&Option, &State](LoopHintAttr::OptionType O, in handleLoopHintAttr()
98 Option = O; in handleLoopHintAttr()
122 Option = llvm::StringSwitch<LoopHintAttr::OptionType>( in handleLoopHintAttr()
136 if (Option == LoopHintAttr::VectorizeWidth) { in handleLoopHintAttr()
145 } else if (Option == LoopHintAttr::InterleaveCount || in handleLoopHintAttr()
146 Option == LoopHintAttr::UnrollCount || in handleLoopHintAttr()
147 Option == LoopHintAttr::PipelineInitiationInterval) { in handleLoopHintAttr()
152 } else if (Option == LoopHintAttr::Vectorize || in handleLoopHintAttr()
153 Option == LoopHintAttr::Interleave || in handleLoopHintAttr()
[all …]
/netbsd-src/external/mit/xorg/etc/etc.dreamcast/
H A Dxorg.conf.uskbd16 Option "AutoAddDevices" "false"
22 Option "Protocol" "wskbd"
23 Option "Device" "/dev/wskbd0"
24 Option "XkbLayout" "us"
25 # Option "XkbLayout" "jp(106)"
26 # Option "XkbOptions" "ctrl:swapcaps"
32 Option "Protocol" "wsmouse"
33 Option "ButtonMapping" "1 2 3 2"
H A Dxorg.conf.jpkbd16 Option "AutoAddDevices" "false"
22 Option "Protocol" "wskbd"
23 Option "Device" "/dev/wskbd0"
24 # Option "XkbLayout" "us"
25 Option "XkbLayout" "jp(106)"
26 # Option "XkbOptions" "ctrl:swapcaps"
32 Option "Protocol" "wsmouse"
33 Option "ButtonMapping" "1 2 3 2"
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
H A DLipoOpts.td1 include "llvm/Option/OptParser.td"
22 : Option<["-", "--"], "verify_arch", KIND_REMAINING_ARGS>,
27 def archs : Option<["-", "--"], "archs", KIND_FLAG>,
31 def info : Option<["-", "--"], "info", KIND_FLAG>,
37 def thin : Option<["-", "--"], "thin", KIND_SEPARATE>,
42 def extract : Option<["-", "--"], "extract", KIND_SEPARATE>,
47 def create : Option<["-", "--"], "create", KIND_FLAG>,
58 def output : Option<["-", "--"], "output", KIND_SEPARATE>,
/netbsd-src/crypto/external/cpl/trousers/dist/dist/
H A Dtcsd.conf.in11 # Option: port
18 # Option: num_threads
25 # Option: system_ps_file
32 # Option: firmware_log_file
41 # Option: kernel_log_file
52 # Option: firmware_pcrs
60 # Option: kernel_pcrs
68 # Option: platform_cred
79 # Option: conformance_cred
90 # Option: endorsement_cred
[all …]

12345678910>>...25