Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
DOptTable.cpp66 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) { in operator <()
89 static inline bool operator<(const OptTable::Info &I, const char *Name) { in operator <()
98 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() function in OptTable
160 OptTable::~OptTable() = default;
162 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption()
181 static unsigned matchOption(const OptTable::Info *I, StringRef Str, in matchOption()
198 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches()
210 OptTable::suggestValueCompletions(StringRef Option, StringRef Arg) const { in suggestValueCompletions()
230 OptTable::findByPrefix(StringRef Cur, unsigned short DisableFlags) const { in findByPrefix()
250 unsigned OptTable::findNearest(StringRef Option, std::string &NearestString, in findNearest()
[all …]
DCMakeLists.txt5 OptTable.cpp
DOption.cpp27 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option()
/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
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.cpp700 const char *ExpandChar, const OptTable &Opts) { in TranslateOptArg()
792 const OptTable &Opts) { in TranslateDArg()
811 const OptTable &Opts = getDriver().getOpts(); in TranslateArgs()
/external/llvm/include/llvm/Option/
DOption.h69 const OptTable::Info *Info;
70 const OptTable *Owner;
73 Option(const OptTable::Info *Info, const OptTable *Owner);
DOptTable.h32 class OptTable {
76 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
79 ~OptTable();
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
DOption.h78 const OptTable::Info *Info;
79 const OptTable *Owner;
82 Option(const OptTable::Info *Info, const OptTable *Owner);
DOptTable.h39 class OptTable {
84 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
87 ~OptTable();
/external/clang/include/clang/Driver/
DOptions.h15 class OptTable; variable
47 llvm::opt::OptTable *createDriverOptTable();
DDriver.h35 class OptTable; variable
67 llvm::opt::OptTable *Opts;
240 const llvm::opt::OptTable &getOpts() const { return *Opts; } in getOpts()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/
Dllvm-mt.cpp50 static const opt::OptTable::Info InfoTable[] = {
62 class CvtResOptTable : public opt::OptTable {
64 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DDlltoolDriver.cpp42 static const llvm::opt::OptTable::Info InfoTable[] = {
50 class DllOptTable : public llvm::opt::OptTable {
52 DllOptTable() : OptTable(InfoTable, false) {} in DllOptTable()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
Dllvm-rc.cpp56 static const opt::OptTable::Info InfoTable[] = {
68 class RcOptTable : public opt::OptTable {
70 RcOptTable() : OptTable(InfoTable, /* IgnoreCase = */ true) {} in RcOptTable()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/
DLibDriver.cpp43 static const opt::OptTable::Info InfoTable[] = {
51 class LibOptTable : public opt::OptTable {
53 LibOptTable() : OptTable(InfoTable, true) {} in LibOptTable()
/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/
Dllvm-cvtres.cpp51 static const opt::OptTable::Info InfoTable[] = {
63 class CvtResOptTable : public opt::OptTable {
65 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Dllvm-objcopy.cpp65 static const opt::OptTable::Info ObjcopyInfoTable[] = {
84 class ObjcopyOptTable : public opt::OptTable {
86 ObjcopyOptTable() : OptTable(ObjcopyInfoTable, true) {} in ObjcopyOptTable()
102 static const opt::OptTable::Info StripInfoTable[] = {
113 class StripOptTable : public opt::OptTable {
115 StripOptTable() : OptTable(StripInfoTable, true) {} in StripOptTable()
/external/llvm/unittests/Option/
DOptionParsingTest.cpp38 static const OptTable::Info InfoTable[] = {
48 class TestOptTable : public OptTable {
51 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Option/
DOptionParsingTest.cpp39 static const OptTable::Info InfoTable[] = {
49 class TestOptTable : public OptTable {
52 : 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.cpp164 std::unique_ptr<OptTable> OptTbl(createDriverOptTable()); in CreateFromArgs()
475 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in cc1as_main()

12