Searched refs:OptTable (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Driver/
H A DCC1AsOptions.cpp12 #include "llvm/Option/OptTable.h"
23 static const OptTable::Info CC1AsInfoTable[] = {
34 class CC1AsOptTable : public OptTable {
37 : OptTable(CC1AsInfoTable, llvm::array_lengthof(CC1AsInfoTable)) {}
42 OptTable *clang::driver::createCC1AsOptTable() {
H A DDriverOptions.cpp12 #include "llvm/Option/OptTable.h"
23 static const OptTable::Info InfoTable[] = {
34 class DriverOptTable : public OptTable {
37 : OptTable(InfoTable, llvm::array_lengthof(InfoTable)) {}
42 OptTable *clang::driver::createDriverOptTable() {
H A DToolChains.cpp24 #include "llvm/Option/OptTable.h"
387 const OptTable &Opts = getDriver().getOpts();
612 const OptTable &Opts = getDriver().getOpts();
H A DDriver.cpp28 #include "llvm/Option/OptTable.h"
194 static Arg* MakeInputArg(const DerivedArgList &Args, OptTable *Opts,
/freebsd-10.1-release/lib/clang/libllvmoption/
H A DMakefile10 OptTable.cpp \
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DCC1AsOptions.h15 class OptTable;
33 llvm::opt::OptTable *createCC1AsOptTable();
H A DOptions.h15 class OptTable;
46 llvm::opt::OptTable *createDriverOptTable();
H A DDriver.h34 class OptTable;
52 llvm::opt::OptTable *Opts;
206 const llvm::opt::OptTable &getOpts() const { return *Opts; }
/freebsd-10.1-release/contrib/llvm/include/llvm/Option/
H A DOptTable.h1 //===--- OptTable.h - Option Table ------------------------------*- C++ -*-===//
26 /// The OptTable class provides a layer of indirection which allows Option
28 /// be needed at runtime; the OptTable class maintains enough information to
31 class OptTable { class in namespace:llvm::opt
76 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos,
79 ~OptTable();
H A DOption.h15 #include "llvm/Option/OptTable.h"
68 const OptTable::Info *Info;
69 const OptTable *Owner;
72 Option(const OptTable::Info *Info, const OptTable *Owner);
/freebsd-10.1-release/contrib/llvm/lib/Option/
H A DOptTable.cpp1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
10 #include "llvm/Option/OptTable.h"
56 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) {
79 static inline bool operator<(const OptTable::Info &I, const char *Name) {
87 OptTable::OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos, function in class:OptTable
157 OptTable::~OptTable() {
160 const Option OptTable
[all...]
H A DOption.cpp22 Option::Option(const OptTable::Info *info, const OptTable *owner)
/freebsd-10.1-release/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp40 #include "llvm/Option/OptTable.h"
154 OwningPtr<OptTable> OptTbl(createCC1AsOptTable());
431 OwningPtr<OptTable> Opts(driver::createCC1AsOptTable());
H A Ddriver.cpp30 #include "llvm/Option/OptTable.h"
348 OwningPtr<OptTable> Opts(createDriverOptTable());
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp26 #include "llvm/Option/OptTable.h"
181 OwningPtr<OptTable> Opts(driver::createDriverOptTable());
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp29 #include "llvm/Option/OptTable.h"
1637 OwningPtr<OptTable> Opts(createDriverOptTable());

Completed in 140 milliseconds