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)
154 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U,
155 OptSpecifier Id2 = 0U) const {
162 iterator_range<arg_iterator> filtered(OptSpecifier Id0 = 0U,
163 OptSpecifier Id1 = 0U,
164 OptSpecifier Id2 = 0U) const {
173 void eraseArg(OptSpecifier Id);
182 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()
88 const Option getOption(OptSpecifier Opt) const;
91 const char *getOptionName(OptSpecifier id) const { in getOptionName()
96 unsigned getOptionKind(OptSpecifier id) const { in getOptionKind()
101 unsigned getOptionGroupID(OptSpecifier id) const { in getOptionGroupID()
106 const char *getOptionHelpText(OptSpecifier id) const { in getOptionHelpText()
112 const char *getOptionMetaVar(OptSpecifier id) const { in getOptionMetaVar()
DOption.h185 bool matches(OptSpecifier ID) const;
/external/llvm/lib/Option/
DArgList.cpp41 void ArgList::eraseArg(OptSpecifier Id) { in eraseArg()
47 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const { in getLastArgNoClaim()
55 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArgNoClaim()
64 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1, in getLastArgNoClaim()
65 OptSpecifier Id2) const { in getLastArgNoClaim()
74 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1, in getLastArgNoClaim()
75 OptSpecifier Id2, OptSpecifier Id3) const { in getLastArgNoClaim()
84 Arg *ArgList::getLastArg(OptSpecifier Id) const { in getLastArg()
96 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg()
110 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
154 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
291 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpName()
366 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpGroup()
DOption.cpp88 bool Option::matches(OptSpecifier Opt) const { in matches()
/external/clang/include/clang/Frontend/
DUtils.h195 llvm::opt::OptSpecifier Id, int Default,
199 llvm::opt::OptSpecifier Id, int Default, in getLastArgIntValue()
205 llvm::opt::OptSpecifier Id, uint64_t Default,
209 llvm::opt::OptSpecifier Id, in getLastArgUInt64Value()
/external/clang/lib/Driver/
DCompilation.cpp199 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD, in initCompilationForDiagnostics()
DTools.cpp57 OptSpecifier Group) { in handleTargetFeaturesGroup()
1348 OptSpecifier OnOpt, OptSpecifier OffOpt, in AddTargetFeature()
4127 OptSpecifier StrictAliasingAliasOption = in ConstructJob()
4155 OptSpecifier FastMathAliasOption = in ConstructJob()
5807 OptSpecifier VectorizeAliasOption = in ConstructJob()
5815 OptSpecifier SLPVectAliasOption = in ConstructJob()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp122 static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group, in addDiagnosticArgs()
123 OptSpecifier GroupWithValue, in addDiagnosticArgs()
2499 static IntTy getLastArgIntValueImpl(const ArgList &Args, OptSpecifier Id, in getLastArgIntValueImpl()
2515 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue()
2520 uint64_t getLastArgUInt64Value(const ArgList &Args, OptSpecifier Id, in getLastArgUInt64Value()