Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Option/
DArgList.h46 OptSpecifier Id0, Id1, Id2;
58 OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U,
59 OptSpecifier Id2 = 0U)
147 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U,
148 OptSpecifier Id2 = 0U) const {
155 iterator_range<arg_iterator> filtered(OptSpecifier Id0 = 0U,
156 OptSpecifier Id1 = 0U,
157 OptSpecifier Id2 = 0U) const {
166 void eraseArg(OptSpecifier Id);
175 bool hasArgNoClaim(OptSpecifier Id) const { in hasArgNoClaim()
[all …]
DOptSpecifier.h20 class OptSpecifier {
24 explicit OptSpecifier(bool) = delete;
27 OptSpecifier() : ID(0) {} in OptSpecifier() function
28 /*implicit*/ OptSpecifier(unsigned ID) : ID(ID) {} in OptSpecifier() function
29 /*implicit*/ OptSpecifier(const Option *Opt);
35 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
36 bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
DOptTable.h69 const Info &getInfo(OptSpecifier Opt) const { in getInfo()
89 const Option getOption(OptSpecifier Opt) const;
92 const char *getOptionName(OptSpecifier id) const { in getOptionName()
97 unsigned getOptionKind(OptSpecifier id) const { in getOptionKind()
102 unsigned getOptionGroupID(OptSpecifier id) const { in getOptionGroupID()
107 const char *getOptionHelpText(OptSpecifier id) const { in getOptionHelpText()
113 const char *getOptionMetaVar(OptSpecifier id) const { in getOptionMetaVar()
DOption.h183 bool matches(OptSpecifier ID) const;
/external/llvm/lib/Option/
DArgList.cpp43 void ArgList::eraseArg(OptSpecifier Id) { in eraseArg()
49 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const { in getLastArgNoClaim()
57 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArgNoClaim()
66 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1, in getLastArgNoClaim()
67 OptSpecifier Id2) const { in getLastArgNoClaim()
76 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1, in getLastArgNoClaim()
77 OptSpecifier Id2, OptSpecifier Id3) const { in getLastArgNoClaim()
86 Arg *ArgList::getLastArg(OptSpecifier Id) const { in getLastArg()
98 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg()
112 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg()
[all …]
DOptTable.cpp85 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} in OptSpecifier() function in OptSpecifier
156 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
294 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpName()
369 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpGroup()
DOption.cpp84 bool Option::matches(OptSpecifier Opt) const { in matches()
/external/clang/include/clang/Frontend/
DUtils.h184 llvm::opt::OptSpecifier Id, int Default,
188 llvm::opt::OptSpecifier Id, int Default, in getLastArgIntValue()
194 llvm::opt::OptSpecifier Id, uint64_t Default,
198 llvm::opt::OptSpecifier Id, in getLastArgUInt64Value()
/external/clang/lib/Driver/
DCompilation.cpp224 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD, in initCompilationForDiagnostics()
DTools.cpp1090 OptSpecifier OnOpt, OptSpecifier OffOpt, in AddTargetFeature()
2968 OptSpecifier StrictAliasingAliasOption = OFastEnabled ? options::OPT_Ofast : in ConstructJob()
2992 OptSpecifier FastMathAliasOption = OFastEnabled ? options::OPT_Ofast : in ConstructJob()
4514 OptSpecifier VectorizeAliasOption = EnableVec ? options::OPT_O_Group : in ConstructJob()
4522 OptSpecifier SLPVectAliasOption = EnableSLPVec ? options::OPT_O_Group : in ConstructJob()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp115 static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group, in addDiagnosticArgs()
116 OptSpecifier GroupWithValue, in addDiagnosticArgs()
2032 static IntTy getLastArgIntValueImpl(const ArgList &Args, OptSpecifier Id, in getLastArgIntValueImpl()
2048 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue()
2053 uint64_t getLastArgUInt64Value(const ArgList &Args, OptSpecifier Id, in getLastArgUInt64Value()