HomeSort by relevance Sort by last modified time
    Searched refs:OptTable (Results 1 - 22 of 22) sorted by null

  /external/clang/include/clang/Driver/
CC1AsOptions.h 15 class OptTable;
30 OptTable *createCC1AsOptTable();
Options.h 15 class OptTable;
30 OptTable *createDriverOptTable();
OptTable.h 1 //===--- OptTable.h - Option Table ------------------------------*- C++ -*-===//
26 /// The OptTable class provides a layer of indirection which allows Option
28 /// be needed at runtime; the OptTable class maintains enough information to
31 class OptTable {
74 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
76 ~OptTable();
Option.h 14 #include "clang/Driver/OptTable.h"
78 const OptTable::Info *Info;
79 const OptTable *Owner;
82 Option(const OptTable::Info *Info, const OptTable *Owner);
Driver.h 38 class OptTable;
44 OptTable *Opts;
187 const OptTable &getOpts() const { return *Opts; }
  /external/clang/lib/Driver/
CC1AsOptions.cpp 11 #include "clang/Driver/OptTable.h"
25 static const OptTable::Info CC1AsInfoTable[] = {
36 class CC1AsOptTable : public OptTable {
39 : OptTable(CC1AsInfoTable,
45 OptTable *clang::driver::createCC1AsOptTable() {
DriverOptions.cpp 11 #include "clang/Driver/OptTable.h"
24 static const OptTable::Info InfoTable[] = {
35 class DriverOptTable : public OptTable {
38 : OptTable(InfoTable, sizeof(InfoTable) / sizeof(InfoTable[0])) {}
43 OptTable *clang::driver::createDriverOptTable() {
OptTable.cpp 1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
10 #include "clang/Driver/OptTable.h"
51 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) {
73 static inline bool operator<(const OptTable::Info &I, const char *Name) {
76 static inline bool operator<(const char *Name, const OptTable::Info &I) {
88 OptTable::OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos)
155 OptTable::~OptTable() {
    [all...]
Android.mk 25 OptTable.cpp \
Option.cpp 20 Option::Option(const OptTable::Info *info, const OptTable *owner)
ToolChains.cpp 19 #include "clang/Driver/OptTable.h"
373 const OptTable &Opts = getDriver().getOpts();
604 const OptTable &Opts = getDriver().getOpts();
    [all...]
  /external/llvm/include/llvm/Option/
Option.h 15 #include "llvm/Option/OptTable.h"
67 const OptTable::Info *Info;
68 const OptTable *Owner;
71 Option(const OptTable::Info *Info, const OptTable *Owner);
OptTable.h 1 //===--- OptTable.h - Option Table ------------------------------*- C++ -*-===//
26 /// The OptTable class provides a layer of indirection which allows Option
28 /// be needed at runtime; the OptTable class maintains enough information to
31 class OptTable {
74 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
76 ~OptTable();
  /external/llvm/lib/Option/
OptTable.cpp 1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
10 #include "llvm/Option/OptTable.h"
51 static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) {
73 static inline bool operator<(const OptTable::Info &I, const char *Name) {
76 static inline bool operator<(const char *Name, const OptTable::Info &I) {
84 OptTable::OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos)
152 OptTable::~OptTable() {
    [all...]
Option.cpp 22 Option::Option(const OptTable::Info *info, const OptTable *owner)
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 1 //===- unittest/Support/OptionParsingTest.cpp - OptTable tests ------------===//
32 static const OptTable::Info InfoTable[] = {
42 class TestOptTable : public OptTable {
45 : OptTable(InfoTable, sizeof(InfoTable) / sizeof(InfoTable[0])) {}
  /frameworks/compile/slang/
llvm-rs-cc.cpp 28 #include "clang/Driver/OptTable.h"
59 using clang::driver::OptTable;
94 static const OptTable::Info RSCCInfoTable[] = {
105 class RSCCOptTable : public OptTable {
108 : OptTable(RSCCInfoTable,
113 OptTable *createRSCCOptTable() {
193 llvm::OwningPtr<OptTable> OptParser(createRSCCOptTable());
433 llvm::OwningPtr<OptTable> OptTbl(createRSCCOptTable());
  /external/clang/tools/clang-check/
ClangCheck.cpp 20 #include "clang/Driver/OptTable.h"
52 static OwningPtr<OptTable> Options(createDriverOptTable());
  /external/clang/tools/driver/
cc1as_main.cpp 21 #include "clang/Driver/OptTable.h"
151 OwningPtr<OptTable> OptTbl(createCC1AsOptTable());
428 OwningPtr<driver::OptTable> Opts(driver::createCC1AsOptTable());
driver.cpp 21 #include "clang/Driver/OptTable.h"
407 OwningPtr<OptTable> CC1Opts(createDriverOptTable());
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 18 #include "clang/Driver/OptTable.h"
179 OwningPtr<driver::OptTable> Opts(driver::createDriverOptTable());
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 17 #include "clang/Driver/OptTable.h"
    [all...]

Completed in 2687 milliseconds