Home
last modified time | relevance | path

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

/external/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 …]
DCMakeLists.txt5 OptTable.cpp
DAndroid.mk7 OptTable.cpp
DOption.cpp22 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option()
/external/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()
DToolChains.cpp433 const OptTable &Opts = getDriver().getOpts(); in AddDeploymentTarget()
673 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
912 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
DDriver.cpp192 static Arg* MakeInputArg(DerivedArgList &Args, OptTable *Opts, in MakeInputArg()
/external/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
/external/clang/include/clang/Driver/
DOptions.h15 class OptTable; variable
47 llvm::opt::OptTable *createDriverOptTable();
DDriver.h34 class OptTable; variable
52 llvm::opt::OptTable *Opts;
205 const llvm::opt::OptTable &getOpts() const { return *Opts; } in getOpts()
/external/llvm/unittests/Option/
DOptionParsingTest.cpp38 static const OptTable::Info InfoTable[] = {
48 class TestOptTable : public OptTable {
51 : OptTable(InfoTable, array_lengthof(InfoTable), IgnoreCase) {} in TestOptTable()
/external/clang/tools/driver/
Dcc1as_main.cpp157 std::unique_ptr<OptTable> OptTbl(createDriverOptTable()); in CreateFromArgs()
454 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in cc1as_main()
Ddriver.cpp348 std::unique_ptr<OptTable> Opts(createDriverOptTable()); in main()
/external/clang/lib/FrontendTool/
DExecuteCompilerInvocation.cpp185 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in ExecuteCompilerInvocation()
/external/clang/tools/clang-check/
DClangCheck.cpp53 static std::unique_ptr<opt::OptTable> Options(createDriverOptTable());
/external/clang/lib/Frontend/
DCompilerInvocation.cpp1794 std::unique_ptr<OptTable> Opts(createDriverOptTable()); in CreateFromArgs()
/external/llvm/patches/
D0004-Add-Android-makefiles-for-LLVM.patch1330 + OptTable.cpp