OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OptTable
(Results
1 - 19
of
19
) sorted by null
/external/clang/include/clang/Driver/
CC1AsOptions.h
15
class
OptTable
;
33
llvm::opt::
OptTable
*createCC1AsOptTable();
Options.h
15
class
OptTable
;
46
llvm::opt::
OptTable
*createDriverOptTable();
Driver.h
33
class
OptTable
;
50
llvm::opt::
OptTable
*Opts;
204
const llvm::opt::
OptTable
&getOpts() const { return *Opts; }
/external/clang/lib/Driver/
CC1AsOptions.cpp
12
#include "llvm/Option/
OptTable
.h"
23
static const
OptTable
::Info CC1AsInfoTable[] = {
34
class CC1AsOptTable : public
OptTable
{
37
:
OptTable
(CC1AsInfoTable, llvm::array_lengthof(CC1AsInfoTable)) {}
42
OptTable
*clang::driver::createCC1AsOptTable() {
DriverOptions.cpp
12
#include "llvm/Option/
OptTable
.h"
23
static const
OptTable
::Info InfoTable[] = {
34
class DriverOptTable : public
OptTable
{
37
:
OptTable
(InfoTable, llvm::array_lengthof(InfoTable)) {}
42
OptTable
*clang::driver::createDriverOptTable() {
ToolChains.cpp
24
#include "llvm/Option/
OptTable
.h"
368
const
OptTable
&Opts = getDriver().getOpts();
593
const
OptTable
&Opts = getDriver().getOpts();
[
all
...]
Driver.cpp
28
#include "llvm/Option/
OptTable
.h"
[
all
...]
/external/llvm/include/llvm/Option/
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
{
75
OptTable
(const Info *_OptionInfos, unsigned _NumOptionInfos);
77
~
OptTable
();
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);
/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
...]
Android.mk
7
OptTable
.cpp
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 ------------===//
39
static const
OptTable
::Info InfoTable[] = {
49
class TestOptTable : public
OptTable
{
52
:
OptTable
(InfoTable, array_lengthof(InfoTable)) {}
/frameworks/compile/slang/
llvm-rs-cc.cpp
38
#include "llvm/Option/
OptTable
.h"
59
using llvm::opt::
OptTable
;
93
static const
OptTable
::Info RSCCInfoTable[] = {
104
class RSCCOptTable : public
OptTable
{
107
:
OptTable
(RSCCInfoTable,
112
OptTable
*createRSCCOptTable() {
192
llvm::OwningPtr<
OptTable
> OptParser(createRSCCOptTable());
435
llvm::OwningPtr<
OptTable
> OptTbl(createRSCCOptTable());
/external/clang/tools/clang-check/
ClangCheck.cpp
31
#include "llvm/Option/
OptTable
.h"
54
static OwningPtr<
OptTable
> Options(createDriverOptTable());
/external/clang/tools/driver/
cc1as_main.cpp
40
#include "llvm/Option/
OptTable
.h"
154
OwningPtr<
OptTable
> OptTbl(createCC1AsOptTable());
430
OwningPtr<
OptTable
> Opts(driver::createCC1AsOptTable());
driver.cpp
30
#include "llvm/Option/
OptTable
.h"
333
OwningPtr<
OptTable
> CC1Opts(createDriverOptTable());
/external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp
26
#include "llvm/Option/
OptTable
.h"
182
OwningPtr<
OptTable
> Opts(driver::createDriverOptTable());
/external/clang/lib/Frontend/
CompilerInvocation.cpp
29
#include "llvm/Option/
OptTable
.h"
[
all
...]
Completed in 969 milliseconds