HomeSort by: relevance | last modified time | path
    Searched defs:OptTable (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
OptTable.h 1 //===- OptTable.h - Option Table --------------------------------*- C++ -*-===//
35 /// The OptTable class provides a layer of indirection which allows Option
37 /// be needed at runtime; the OptTable class maintains enough information to
40 class OptTable {
89 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
92 ~OptTable();
148 /// Find flags from OptTable which starts with Cur.
157 /// Find the OptTable option that most closely matches the given string.
160 /// input of an option that may not exist in the OptTable. Note that the
163 /// OptTable
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 54 #include "llvm/Option/OptTable.h"
155 auto &OptTable = clang::driver::getDriverOptTable();
162 std::unique_ptr<llvm::opt::Arg> Arg(OptTable.ParseOneArg(
  /src/external/apache2/llvm/dist/llvm/lib/Option/
OptTable.cpp 1 //===- OptTable.cpp - Option Table Implementation -------------------------===//
9 #include "llvm/Option/OptTable.h"
66 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) {
89 static inline bool operator<(const OptTable::Info &I, const char *Name) {
98 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase)
160 OptTable::~OptTable() = default;
162 const Option OptTable::getOption(OptSpecifier Opt) const
    [all...]

Completed in 25 milliseconds