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

/external/clang/lib/Driver/
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.cpp25 #include "llvm/Option/OptTable.h"
433 const OptTable &Opts = getDriver().getOpts();
673 const OptTable &Opts = getDriver().getOpts();
912 const OptTable &Opts = getDriver().getOpts();
H A DDriver.cpp30 #include "llvm/Option/OptTable.h"
192 static Arg* MakeInputArg(DerivedArgList &Args, OptTable *Opts,
/external/clang/include/clang/Driver/
H A DOptions.h15 class OptTable;
47 llvm::opt::OptTable *createDriverOptTable();
H A DDriver.h34 class OptTable;
52 llvm::opt::OptTable *Opts;
205 const llvm::opt::OptTable &getOpts() const { return *Opts; }
/external/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);
/external/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 DAndroid.mk7 OptTable.cpp
H A DOption.cpp22 Option::Option(const OptTable::Info *info, const OptTable *owner)
/external/llvm/unittests/Option/
H A DOptionParsingTest.cpp1 //===- unittest/Support/OptionParsingTest.cpp - OptTable tests ------------===//
38 static const OptTable::Info InfoTable[] = {
48 class TestOptTable : public OptTable {
51 : OptTable(InfoTable, array_lengthof(InfoTable), IgnoreCase) {}
/external/clang/tools/driver/
H A Dcc1as_main.cpp39 #include "llvm/Option/OptTable.h"
157 std::unique_ptr<OptTable> OptTbl(createDriverOptTable());
454 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable());
H A Ddriver.cpp30 #include "llvm/Option/OptTable.h"
348 std::unique_ptr<OptTable> Opts(createDriverOptTable());
/external/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp27 #include "llvm/Option/OptTable.h"
185 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable());
/external/clang/tools/clang-check/
H A DClangCheck.cpp28 #include "llvm/Option/OptTable.h"
53 static std::unique_ptr<opt::OptTable> Options(createDriverOptTable());
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp29 #include "llvm/Option/OptTable.h"
1794 std::unique_ptr<OptTable> Opts(createDriverOptTable());

Completed in 289 milliseconds