Searched refs:OptSpecifier (Results 1 – 11 of 11) sorted by relevance
/external/llvm/include/llvm/Option/ |
D | ArgList.h | 43 OptSpecifier Id0, Id1, Id2; 55 const ArgList &_Args, OptSpecifier _Id0 = 0U, 56 OptSpecifier _Id1 = 0U, OptSpecifier _Id2 = 0U) 140 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U, 141 OptSpecifier Id2 = 0U) const { 153 void eraseArg(OptSpecifier Id); 162 bool hasArgNoClaim(OptSpecifier Id) const { in hasArgNoClaim() 165 bool hasArg(OptSpecifier Id) const { in hasArg() 168 bool hasArg(OptSpecifier Id0, OptSpecifier Id1) const { in hasArg() 171 bool hasArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const { in hasArg() [all …]
|
D | OptSpecifier.h | 18 class OptSpecifier { 22 explicit OptSpecifier(bool) LLVM_DELETED_FUNCTION; 25 OptSpecifier() : ID(0) {} in OptSpecifier() function 26 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {} in OptSpecifier() function 27 /*implicit*/ OptSpecifier(const Option *Opt); 33 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); } 34 bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
|
D | OptTable.h | 68 const Info &getInfo(OptSpecifier Opt) const { in getInfo() 86 const Option getOption(OptSpecifier Opt) const; 89 const char *getOptionName(OptSpecifier id) const { in getOptionName() 94 unsigned getOptionKind(OptSpecifier id) const { in getOptionKind() 99 unsigned getOptionGroupID(OptSpecifier id) const { in getOptionGroupID() 104 const char *getOptionHelpText(OptSpecifier id) const { in getOptionHelpText() 110 const char *getOptionMetaVar(OptSpecifier id) const { in getOptionMetaVar()
|
D | Option.h | 182 bool matches(OptSpecifier ID) const;
|
/external/llvm/lib/Option/ |
D | ArgList.cpp | 47 void ArgList::eraseArg(OptSpecifier Id) { in eraseArg() 58 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const { in getLastArgNoClaim() 66 Arg *ArgList::getLastArg(OptSpecifier Id) const { in getLastArg() 78 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg() 92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() 93 OptSpecifier Id2) const { in getLastArg() 107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() 108 OptSpecifier Id2, OptSpecifier Id3) const { in getLastArg() 123 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() 124 OptSpecifier Id2, OptSpecifier Id3, in getLastArg() [all …]
|
D | OptTable.cpp | 82 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} in OptSpecifier() function in OptSpecifier 155 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption() 295 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpName() 358 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpGroup()
|
D | Option.cpp | 86 bool Option::matches(OptSpecifier Opt) const { in matches()
|
/external/clang/include/clang/Frontend/ |
D | Utils.h | 115 llvm::opt::OptSpecifier Id, int Default, 119 llvm::opt::OptSpecifier Id, int Default, in getLastArgIntValue()
|
/external/clang/lib/Driver/ |
D | Compilation.cpp | 367 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD, in initCompilationForDiagnostics()
|
D | Tools.cpp | 958 OptSpecifier OnOpt, in AddTargetFeature() 959 OptSpecifier OffOpt, in AddTargetFeature() 2252 OptSpecifier StrictAliasingAliasOption = OFastEnabled ? options::OPT_Ofast : in ConstructJob() 2273 OptSpecifier FastMathAliasOption = OFastEnabled ? options::OPT_Ofast : in ConstructJob() 3452 OptSpecifier VectorizeAliasOption = OFastEnabled ? options::OPT_Ofast : in ConstructJob()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 1745 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue()
|