Home
last modified time | relevance | path

Searched refs:OptSpecifier (Results 1 – 11 of 11) sorted by relevance

/external/llvm/include/llvm/Option/
DArgList.h43 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 …]
DOptSpecifier.h18 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); }
DOptTable.h68 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()
DOption.h182 bool matches(OptSpecifier ID) const;
/external/llvm/lib/Option/
DArgList.cpp47 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 …]
DOptTable.cpp82 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()
DOption.cpp86 bool Option::matches(OptSpecifier Opt) const { in matches()
/external/clang/include/clang/Frontend/
DUtils.h115 llvm::opt::OptSpecifier Id, int Default,
119 llvm::opt::OptSpecifier Id, int Default, in getLastArgIntValue()
/external/clang/lib/Driver/
DCompilation.cpp367 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD, in initCompilationForDiagnostics()
DTools.cpp958 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/
DCompilerInvocation.cpp1745 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue()