Home
last modified time | relevance | path

Searched refs:OptTable (Results 1 – 20 of 20) 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(ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() function in OptTable
151 OptTable::~OptTable() { in ~OptTable()
154 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
173 static unsigned matchOption(const OptTable::Info *I, StringRef Str, in matchOption()
189 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, in ParseOneArg()
248 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs()
291 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpName()
366 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { in getOptionHelpGroup()
[all …]
DCMakeLists.txt5 OptTable.cpp
DAndroid.mk7 OptTable.cpp
DOption.cpp23 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) {} in DriverOptTable()
42 OptTable *clang::driver::createDriverOptTable() { in createDriverOptTable()
DMSVCToolChain.cpp641 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
DToolChains.cpp466 const OptTable &Opts = getDriver().getOpts(); in AddDeploymentTarget()
766 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
997 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
4227 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
DDriver.cpp199 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.h32 class OptTable {
76 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
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
66 llvm::opt::OptTable *Opts;
233 const llvm::opt::OptTable &getOpts() const { return *Opts; } in getOpts()
/external/llvm/lib/LibDriver/
DLibDriver.cpp42 static const llvm::opt::OptTable::Info infoTable[] = {
52 class LibOptTable : public llvm::opt::OptTable {
54 LibOptTable() : OptTable(infoTable, true) {} in LibOptTable()
/external/llvm/unittests/Option/
DOptionParsingTest.cpp38 static const OptTable::Info InfoTable[] = {
48 class TestOptTable : public OptTable {
51 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
/external/clang/tools/clang-check/
DClangCheck.cpp56 static std::unique_ptr<opt::OptTable> Options(createDriverOptTable());
/external/clang/tools/driver/
Dcc1as_main.cpp165 std::unique_ptr<OptTable> OptTbl(createDriverOptTable()); in CreateFromArgs()
479 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in cc1as_main()
Ddriver.cpp265 std::unique_ptr<OptTable> Opts(createDriverOptTable()); in CreateAndPopulateDiagOpts()
/external/clang/lib/FrontendTool/
DExecuteCompilerInvocation.cpp167 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in ExecuteCompilerInvocation()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp1991 std::unique_ptr<OptTable> Opts(createDriverOptTable()); in CreateFromArgs()