| /src/external/bsd/jemalloc/dist/scripts/ |
| gen_travis.py | 63 class Option(object): 77 return Option(Option.Type.COMPILER, value) 81 return Option(Option.Type.COMPILER_FLAG, value) 85 return Option(Option.Type.CONFIGURE_FLAG, value) 89 return Option(Option.Type.MALLOC_CONF, value) 93 return Option(Option.Type.FEATURE, value [all...] |
| gen_gh_actions.py | 34 class Option(object): 48 return Option(Option.Type.COMPILER, value) 52 return Option(Option.Type.COMPILER_FLAG, value) 56 return Option(Option.Type.CONFIGURE_FLAG, value) 60 return Option(Option.Type.MALLOC_CONF, value) 64 return Option(Option.Type.FEATURE, value [all...] |
| /src/external/apache2/llvm/lib/libLLVMOption/ |
| Makefile | 7 .PATH: ${LLVM_SRCDIR}/lib/Option 12 Option.cpp
|
| /src/external/bsd/jemalloc.old/dist/scripts/ |
| gen_travis.py | 63 class Option(object): 77 return Option(Option.Type.COMPILER, value) 81 return Option(Option.Type.COMPILER_FLAG, value) 85 return Option(Option.Type.CONFIGURE_FLAG, value) 89 return Option(Option.Type.MALLOC_CONF, value) 93 return Option(Option.Type.FEATURE, value [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/analysis/ |
| analysis_ocaml.c | 25 /* Llvm.llmodule -> string option */ 28 CAMLlocal2(String, Option); 34 Option = Val_none; 37 Option = caml_alloc_some(String); 42 CAMLreturn(Option);
|
| /src/external/bsd/kyua-cli/dist/utils/cmdline/ |
| parser.hpp | 68 /// Mapping of option names to all the values provided. 82 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(
|
| base_command.hpp | 75 template< typename Option > void add_option(const Option&);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Option/ |
| OptSpecifier.h | 1 //===- OptSpecifier.h - Option Specifiers -----------------------*- C++ -*-===// 15 class Option; 17 /// OptSpecifier - Wrapper class for abstracting references to option IDs. 25 /*implicit*/ OptSpecifier(const Option *Opt);
|
| Arg.h | 19 #include "llvm/Option/Option.h" 30 /// A concrete instance of a particular driver option. 36 /// The option this argument is an instance of. 37 const Option Opt; 43 /// How this instance of the option was spelled. 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; [all...] |
| Option.h | 1 //===- 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 44 /// takes, for example how many arguments the option has and how 45 /// they can be provided. Individual option instances store 46 /// additional information about what group the option is a member 47 /// of (if any), if the option is an alias, and a number o [all...] |
| OptTable.h | 1 //===- 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. 42 /// Entry for a single option instance in the option data table. 61 /// The option information table. 70 /// The index of the first option which can be parsed (i.e., is not [all...] |
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangOptionDocEmitter.cpp | 27 Record *Option; 43 // Build the tree of groups. The root in the tree is the fake option group 50 for (Record *R : Records.getAllDerivedDefinitions("Option")) 77 for (Record *R : Records.getAllDerivedDefinitions("Option")) { 152 // Get the number of arguments expected for an option, or -1 if any number of 154 unsigned getNumArgsForKind(Record *OptionKind, const Record *Option) { 160 .Case("KIND_MULTIARG", Option->getValueAsInt("NumArgs")) 196 bool canSphinxCopeWithOption(const Record *Option) { 198 // such as /? by suppressing them from the option list. 199 for (char C : Option->getValueAsString("Name") [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Option/ |
| OptTable.cpp | 1 //===- 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::JoinedClass [all...] |
| Option.cpp | 1 //===- 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) 28 // Multi-level aliases are not supported. This just simplifies option 37 "Cannot provide alias args to a flag option.") [all...] |
| Arg.cpp | 11 #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::RenderJoinedStyle [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| CheckerRegistryData.cpp | 54 for (const CmdLineOption &Option : CmdLineOptions) { 56 Option.dumpToStream(Out); 74 for (const CmdLineOption &Option : CmdLineOptions) { 76 Option.dumpToStream(Out); 107 // If the package doesn't exist, assume the option refers to a single 129 // Find the maximum option length. 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) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/ |
| HotnessThresholdParser.h | 10 /// This file implements a simple parser to decode commandline option for 25 // Valid option values are 47 HotnessThresholdParser(cl::Option &O) : cl::parser<Optional<uint64_t>>(O) {} 49 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| CommandLine.h | 52 /// cl Namespace - This namespace contains all of the command line option 58 // ParseCommandLineOptions - Command line option processing entry point. 96 // PrintOptionValues - Print option values. 97 // With -print-options print the difference between option values and defaults. 98 // With -print-all-options print all option values. 103 class Option; 105 /// Adds a new option for parsing and provides the option it refers to. 107 /// \param O pointer to the option 108 /// \param Name the string name for the option to handle during parsin [all...] |
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CXStoredDiagnostic.cpp | 54 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID); 55 if (!Option.empty()) { 57 *Disable = cxstring::createDup((Twine("-Wno-") + Option).str()); 58 return cxstring::createDup((Twine("-W") + Option).str());
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| Yaml.h | 29 StringRef Option, StringRef ConfigFile) { 38 Mgr.reportInvalidCheckerOptionValue(Chk, Option, 49 Mgr.reportInvalidCheckerOptionValue(Chk, Option,
|
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| msggrep-6 | 51 %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\ [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaStmtAttr.cpp | 93 LoopHintAttr::OptionType Option; 96 auto SetHints = [&Option, &State](LoopHintAttr::OptionType O, 98 Option = O; 121 "Attribute must have valid option info."); 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 | [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| CommandLine.cpp | 82 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; 161 // This collects the different option categories that have been registered. 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) [all...] |
| /src/external/apache2/llvm/bin/clang-format/ |
| Makefile | 33 Option \
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LegacyPassNameParser.h | 15 // appropriate command line option template). The FilteredPassNameParser<> 44 PassNameParser(cl::Option &O); 79 // printOptionInfo - Print out information about this option. Override the 81 void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const override {
|