/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/ |
D | OptTable.cpp | 66 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 …]
|
D | CMakeLists.txt | 5 OptTable.cpp
|
D | Option.cpp | 27 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option()
|
/external/llvm/lib/Option/ |
D | OptTable.cpp | 56 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 …]
|
D | CMakeLists.txt | 5 OptTable.cpp
|
D | Option.cpp | 23 Option::Option(const OptTable::Info *info, const OptTable *owner) in Option()
|
/external/clang/lib/Driver/ |
D | DriverOptions.cpp | 23 static const OptTable::Info InfoTable[] = { 34 class DriverOptTable : public OptTable { 37 : OptTable(InfoTable) {} in DriverOptTable() 42 OptTable *clang::driver::createDriverOptTable() { in createDriverOptTable()
|
D | MSVCToolChain.cpp | 700 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/ |
D | Option.h | 69 const OptTable::Info *Info; 70 const OptTable *Owner; 73 Option(const OptTable::Info *Info, const OptTable *Owner);
|
D | OptTable.h | 32 class OptTable { 76 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 79 ~OptTable();
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/ |
D | Option.h | 78 const OptTable::Info *Info; 79 const OptTable *Owner; 82 Option(const OptTable::Info *Info, const OptTable *Owner);
|
D | OptTable.h | 39 class OptTable { 84 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 87 ~OptTable();
|
/external/clang/include/clang/Driver/ |
D | Options.h | 15 class OptTable; variable 47 llvm::opt::OptTable *createDriverOptTable();
|
D | Driver.h | 35 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/ |
D | llvm-mt.cpp | 50 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/ |
D | DlltoolDriver.cpp | 42 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/ |
D | llvm-rc.cpp | 56 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/ |
D | LibDriver.cpp | 43 static const opt::OptTable::Info InfoTable[] = { 51 class LibOptTable : public opt::OptTable { 53 LibOptTable() : OptTable(InfoTable, true) {} in LibOptTable()
|
/external/llvm/lib/LibDriver/ |
D | LibDriver.cpp | 42 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/ |
D | llvm-cvtres.cpp | 51 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/ |
D | llvm-objcopy.cpp | 65 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/ |
D | OptionParsingTest.cpp | 38 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/ |
D | OptionParsingTest.cpp | 39 static const OptTable::Info InfoTable[] = { 49 class TestOptTable : public OptTable { 52 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
|
/external/clang/tools/clang-check/ |
D | ClangCheck.cpp | 56 static std::unique_ptr<opt::OptTable> Options(createDriverOptTable());
|
/external/clang/tools/driver/ |
D | cc1as_main.cpp | 164 std::unique_ptr<OptTable> OptTbl(createDriverOptTable()); in CreateFromArgs() 475 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable()); in cc1as_main()
|