Searched refs:Option (Results 1 - 25 of 119) sorted by relevance

12345

/netbsd-current/external/apache2/llvm/lib/libLLVMOption/
H A DMakefile7 .PATH: ${LLVM_SRCDIR}/lib/Option
12 Option.cpp
/netbsd-current/external/bsd/kyua-cli/dist/utils/cmdline/
H A Dparser.hpp82 template< typename Option >
83 typename Option::option_type get_option(const std::string&) const;
85 template< typename Option >
86 std::vector< typename Option::option_type > get_multi_option(
H A Dbase_command.hpp75 template< typename Option > void add_option(const Option&);
/netbsd-current/external/apache2/llvm/dist/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c28 CAMLlocal2(String, Option);
34 Option = Val_none;
37 Option = caml_alloc_some(String);
42 CAMLreturn(Option);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Option/
H A DOptSpecifier.h1 //===- OptSpecifier.h - Option Specifiers -----------------------*- C++ -*-===//
15 class Option;
25 /*implicit*/ OptSpecifier(const Option *Opt);
H A DArg.h19 #include "llvm/Option/Option.h"
37 const Option Opt;
67 Arg(const Option Opt, StringRef Spelling, unsigned Index,
69 Arg(const Option Opt, StringRef Spelling, unsigned Index,
71 Arg(const Option Opt, StringRef Spelling, unsigned Index,
77 const Option &getOption() const { return Opt; }
H A DOption.h1 //===- Option.h - Abstract Driver Options -----------------------*- C++ -*-===//
14 #include "llvm/Option/OptSpecifier.h"
15 #include "llvm/Option/OptTable.h"
40 /// Option - Abstract representation for a single form of driver
43 /// An Option class represents a form of option that the driver
50 /// particular Option instance.
51 class Option { class in namespace:llvm::opt
81 Option(const OptTable::Info *Info, const OptTable *Owner);
103 const Option getGroup() const {
109 const Option getAlia
[all...]
H A DOptTable.h1 //===- OptTable.h - Option Table --------------------------------*- C++ -*-===//
15 #include "llvm/Option/OptSpecifier.h"
31 class Option;
33 /// Provide access to the Option info table.
35 /// The OptTable class provides a layer of indirection which allows Option
39 /// parts of the driver still use Option instances where convenient.
82 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
97 /// Get the given Opt's Option instance, lazily creating it
101 const Option getOption(OptSpecifier Opt) const;
138 /// \param [in] Option
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp27 Record *Option; member in struct:__anon1213::DocumentedOption
50 for (Record *R : Records.getAllDerivedDefinitions("Option"))
77 for (Record *R : Records.getAllDerivedDefinitions("Option")) {
154 unsigned getNumArgsForKind(Record *OptionKind, const Record *Option) { argument
160 .Case("KIND_MULTIARG", Option->getValueAsInt("NumArgs"))
196 bool canSphinxCopeWithOption(const Record *Option) { argument
199 for (char C : Option->getValueAsString("Name"))
227 void emitOptionWithArgs(StringRef Prefix, const Record *Option,
229 OS << Prefix << escapeRST(Option->getValueAsString("Name"));
232 getSeparatorsForKind(Option
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Option/
H A DOptTable.cpp1 //===- OptTable.cpp - Option Table Implementation -------------------------===//
9 #include "llvm/Option/OptTable.h"
13 #include "llvm/Option/Arg.h"
14 #include "llvm/Option/ArgList.h"
15 #include "llvm/Option/OptSpecifier.h"
16 #include "llvm/Option/Option.h"
82 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
84 return B.Kind == Option
198 optionMatches(const OptTable::Info &In, StringRef Option) argument
213 suggestValueCompletions(StringRef Option, StringRef Arg) const argument
253 findNearest(StringRef Option, std::string &NearestString, unsigned FlagsToInclude, unsigned FlagsToExclude, unsigned MinimumLength) const argument
326 addValues(const char *Option, const char *Values) argument
591 const std::string &Option = OptionHelp[i].Name; local
[all...]
H A DOption.cpp1 //===- Option.cpp - Abstract Driver Options -------------------------------===//
12 #include "llvm/Option/Arg.h"
13 #include "llvm/Option/ArgList.h"
14 #include "llvm/Option/Option.h"
15 #include "llvm/Option/OptTable.h"
26 Option::Option(const OptTable::Info *info, const OptTable *owner) function in class:Option
41 void Option::print(raw_ostream &O) const {
71 const Option Grou
[all...]
H A DArg.cpp11 #include "llvm/Option/Arg.h"
12 #include "llvm/Option/ArgList.h"
13 #include "llvm/Option/Option.h"
21 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const Arg *BaseArg)
25 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0,
32 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0,
98 case Option::RenderValuesStyle:
102 case Option::RenderCommaJoinedStyle: {
114 case Option
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp54 for (const CmdLineOption &Option : CmdLineOptions) {
56 Option.dumpToStream(Out);
74 for (const CmdLineOption &Option : CmdLineOptions) {
76 Option.dumpToStream(Out);
180 Out << "OVERVIEW: Clang Static Analyzer Checker and Package Option List\n\n";
191 for (const CmdLineOption &Option : Checker.CmdLineOptions) {
192 OptionMap.insert({Checker.FullName, Option});
197 for (const CmdLineOption &Option : Package.CmdLineOptions) {
198 OptionMap.insert({Package.FullName, Option});
212 const CmdLineOption &Option local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
H A DHotnessThresholdParser.h47 HotnessThresholdParser(cl::Option &O) : cl::parser<Optional<uint64_t>>(O) {}
49 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg,
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h103 class Option;
112 void AddLiteralOption(Option &O, StringRef Name);
142 NotHidden = 0x00, // Option included in -help & -help-hidden
158 // the Option=Value form.
184 // Option Category class
204 // The general Option Category (used as default category).
233 SmallVector<Option *, 4> PositionalOpts;
234 SmallVector<Option *, 4> SinkOpts;
235 StringMap<Option *> OptionsMap;
237 Option *ConsumeAfterOp
249 class Option { class in namespace:llvm::cl
340 explicit Option(enum NumOccurrencesFlag OccurrencesFlag, function in namespace:llvm::cl
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp54 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID); local
55 if (!Option.empty()) {
57 *Disable = cxstring::createDup((Twine("-Wno-") + Option).str());
58 return cxstring::createDup((Twine("-W") + Option).str());
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DYaml.h29 StringRef Option, StringRef ConfigFile) {
38 Mgr.reportInvalidCheckerOptionValue(Chk, Option,
49 Mgr.reportInvalidCheckerOptionValue(Chk, Option,
28 getConfiguration(CheckerManager &Mgr, Checker *Chk, StringRef Option, StringRef ConfigFile) argument
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmsggrep-651 %s\:\ option\ `%s'\ is\ ambiguous\n=%s\: Option \u00bb%s\u00ab ist mehrdeutig\n
55 %s\:\ option\ `--%s'\ doesn't\ allow\ an\ argument\n=%s\: Option \u00bb--%s\u00ab erwartet kein Argument\n
59 %s\:\ option\ `%c%s'\ doesn't\ allow\ an\ argument\n=%s\: Option \u00bb%c%s\u00ab erwartet kein Argument\n
63 %s\:\ option\ `%s'\ requires\ an\ argument\n=%s\: Option \u00bb%s\u00ab erwartet ein Argument\n
67 %s\:\ unrecognized\ option\ `--%s'\n=%s\: unbekannte Option \u00bb--%s\u00ab\n
71 %s\:\ unrecognized\ option\ `%c%s'\n=%s\: unbekannte Option \u00bb%c%s\u00ab\n
75 %s\:\ illegal\ option\ --\ %c\n=%s\: unzul\u00e4ssige Option -- %c\n
79 %s\:\ invalid\ option\ --\ %c\n=%s\: ung\u00fcltige Option -- %c\n
83 %s\:\ option\ requires\ an\ argument\ --\ %c\n=%s\: Option erwartet ein Argument -- %c\n
87 %s\:\ option\ `-W\ %s'\ is\ ambiguous\n=%s\: Option \u00b
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAttr.cpp93 LoopHintAttr::OptionType Option; local
96 auto SetHints = [&Option, &State](LoopHintAttr::OptionType O,
98 Option = O;
122 Option = llvm::StringSwitch<LoopHintAttr::OptionType>(
136 if (Option == LoopHintAttr::VectorizeWidth) {
145 } else if (Option == LoopHintAttr::InterleaveCount ||
146 Option == LoopHintAttr::UnrollCount ||
147 Option == LoopHintAttr::PipelineInitiationInterval) {
152 } else if (Option == LoopHintAttr::Vectorize ||
153 Option
275 LoopHintAttr::OptionType Option = LH->getOption(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp82 void Option::anchor() {}
121 // Option predicates...
122 static inline bool isGrouping(const Option *O) {
125 static inline bool isPrefixedOrGrouping(const Option *O) {
159 SmallVector<Option*, 4> DefaultOptions;
178 void addLiteralOption(Option &Opt, SubCommand *SC, StringRef Name) {
182 errs() << ProgramName << ": CommandLine Error: Option '" << Name
198 void addLiteralOption(Option &Opt, StringRef Name) {
207 void addOption(Option *O, SubCommand *SC) {
217 errs() << ProgramName << ": CommandLine Error: Option '" <<
2013 StringRef Option = getOption(i); local
[all...]
/netbsd-current/external/apache2/llvm/bin/clang-format/
H A DMakefile33 Option \
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DLegacyPassNameParser.h44 PassNameParser(cl::Option &O);
81 void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const override {
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
H A Dgenerator.d85 case IR.Option:
86 uint next = pc + re.ir[pc].data + IRL!(IR.Option);
88 //queue next Option
89 while (re.ir[next].code == IR.Option)
92 next += re.ir[next].data + IRL!(IR.Option);
98 pc += re.ir[pc].data + IRL!(IR.Option);
100 assert(re.ir[pc].code == IR.Option);
101 pc += IRL!(IR.Option);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriverOptions.cpp11 #include "llvm/Option/OptTable.h"
12 #include "llvm/Option/Option.h"
26 {PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, \
/netbsd-current/external/apache2/llvm/bin/llvm-symbolizer/
H A DMakefile29 Option \

Completed in 248 milliseconds

12345