Home
last modified time | relevance | path

Searched refs:OptTable (Results 1 – 17 of 17) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Option/
DOptTable.cpp56 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) { in operator <()
79 static inline bool operator<(const OptTable::Info &I, const char *Name) { in operator <()
87 OptTable::OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos, in OptTable() function in OptTable
157 OptTable::~OptTable() { in ~OptTable()
160 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
179 static unsigned matchOption(const OptTable::Info *I, StringRef Str, in matchOption()
195 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, in ParseOneArg()
254 InputArgList *OptTable::ParseArgs(const char *const *ArgBegin, in ParseArgs()
293 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpName()
357 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpGroup()
[all …]
DOption.cpp22 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/
DDriverOptions.cpp23 static const OptTable::Info InfoTable[] = {
34 class DriverOptTable : public OptTable {
37 : OptTable(InfoTable, llvm::array_lengthof(InfoTable)) {} in DriverOptTable()
42 OptTable *clang::driver::createDriverOptTable() { in createDriverOptTable()
DCC1AsOptions.cpp23 static const OptTable::Info CC1AsInfoTable[] = {
34 class CC1AsOptTable : public OptTable {
37 : OptTable(CC1AsInfoTable, llvm::array_lengthof(CC1AsInfoTable)) {} in CC1AsOptTable()
42 OptTable *clang::driver::createCC1AsOptTable() { in createCC1AsOptTable()
DToolChains.cpp387 const OptTable &Opts = getDriver().getOpts(); in AddDeploymentTarget()
612 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
DDriver.cpp194 static Arg* MakeInputArg(const DerivedArgList &Args, OptTable *Opts, in MakeInputArg()
/freebsd-10-stable/contrib/llvm/include/llvm/Option/
DOption.h68 const OptTable::Info *Info;
69 const OptTable *Owner;
72 Option(const OptTable::Info *Info, const OptTable *Owner);
DOptTable.h31 class OptTable {
76 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos,
79 ~OptTable();
DOptParser.td55 // help text. Clients *can* use this in conjunction with the OptTable::PrintHelp
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
DCC1AsOptions.h15 class OptTable; variable
33 llvm::opt::OptTable *createCC1AsOptTable();
DOptions.h15 class OptTable; variable
46 llvm::opt::OptTable *createDriverOptTable();
DDriver.h34 class OptTable; variable
52 llvm::opt::OptTable *Opts;
206 const llvm::opt::OptTable &getOpts() const { return *Opts; } in getOpts()
/freebsd-10-stable/lib/clang/libllvmoption/
DMakefile10 OptTable.cpp \
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/
Dcc1as_main.cpp154 OwningPtr<OptTable> OptTbl(createCC1AsOptTable()); in CreateFromArgs()
431 OwningPtr<OptTable> Opts(driver::createCC1AsOptTable()); in cc1as_main()
Ddriver.cpp346 OwningPtr<OptTable> Opts(createDriverOptTable()); in main()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/FrontendTool/
DExecuteCompilerInvocation.cpp181 OwningPtr<OptTable> Opts(driver::createDriverOptTable()); in ExecuteCompilerInvocation()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
DCompilerInvocation.cpp1637 OwningPtr<OptTable> Opts(createDriverOptTable()); in CreateFromArgs()