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

/freebsd-9.3-release/contrib/llvm/include/llvm/Option/
H A DOptSpecifier.h1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
17 /// OptSpecifier - Wrapper class for abstracting references to option IDs.
18 class OptSpecifier { class in namespace:llvm::opt
22 explicit OptSpecifier(bool) LLVM_DELETED_FUNCTION;
25 OptSpecifier() : ID(0) {} function in class:llvm::opt::OptSpecifier
26 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {} function in class:llvm::opt::OptSpecifier
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); }
H A DArgList.h15 #include "llvm/Option/OptSpecifier.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 I
[all...]
H A DOptTable.h14 #include "llvm/Option/OptSpecifier.h"
69 const Info &getInfo(OptSpecifier Opt) const {
88 const Option getOption(OptSpecifier Opt) const;
91 const char *getOptionName(OptSpecifier id) const {
96 unsigned getOptionKind(OptSpecifier id) const {
101 unsigned getOptionGroupID(OptSpecifier id) const {
106 const char *getOptionHelpText(OptSpecifier id) const {
112 const char *getOptionMetaVar(OptSpecifier id) const {
H A DOption.h184 bool matches(OptSpecifier ID) const;
/freebsd-9.3-release/contrib/llvm/lib/Option/
H A DArgList.cpp47 void ArgList::eraseArg(OptSpecifier Id) {
58 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
66 Arg *ArgList::getLastArg(OptSpecifier Id) const {
78 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
93 OptSpecifier Id2) const {
107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id
[all...]
H A DOptTable.cpp85 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} function in class:OptSpecifier
160 const Option OptTable::getOption(OptSpecifier Opt) const {
293 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) {
357 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) {
H A DOption.cpp87 bool Option::matches(OptSpecifier Opt) const {
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DUtils.h20 #include "llvm/Option/OptSpecifier.h"
117 llvm::opt::OptSpecifier Id, int Default,
121 llvm::opt::OptSpecifier Id, int Default,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DCompilation.cpp226 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD,
H A DTools.cpp1010 OptSpecifier OnOpt, OptSpecifier OffOpt,
2306 OptSpecifier StrictAliasingAliasOption = OFastEnabled ? options::OPT_Ofast :
2327 OptSpecifier FastMathAliasOption = OFastEnabled ? options::OPT_Ofast :
3610 OptSpecifier VectorizeAliasOption = EnableVec ? options::OPT_O_Group :
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp1817 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default,

Completed in 206 milliseconds