Searched refs:OptSpecifier (Results 1 - 16 of 16) sorted by relevance

/external/clang/include/clang/Driver/
H A DOptSpecifier.h1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
19 /// OptSpecifier - Wrapper class for abstracting references to option IDs.
20 class OptSpecifier { class in namespace:clang::driver
24 explicit OptSpecifier(bool) LLVM_DELETED_FUNCTION;
27 OptSpecifier() : ID(0) {} function in class:clang::driver::OptSpecifier
28 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {} function in class:clang::driver::OptSpecifier
29 /*implicit*/ OptSpecifier(const Option *Opt);
35 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
36 bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
H A DArgList.h14 #include "clang/Driver/OptSpecifier.h"
47 OptSpecifier Id0, Id1, Id2;
59 const ArgList &_Args, OptSpecifier _Id0 = 0U,
60 OptSpecifier _Id1 = 0U, OptSpecifier _Id2 = 0U)
144 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U,
145 OptSpecifier Id2 = 0U) const {
157 void eraseArg(OptSpecifier Id);
166 bool hasArgNoClaim(OptSpecifier I
[all...]
H A DOptTable.h14 #include "clang/Driver/OptSpecifier.h"
67 const Info &getInfo(OptSpecifier Opt) const {
85 const Option getOption(OptSpecifier Opt) const;
88 const char *getOptionName(OptSpecifier id) const {
93 unsigned getOptionKind(OptSpecifier id) const {
98 unsigned getOptionGroupID(OptSpecifier id) const {
103 const char *getOptionHelpText(OptSpecifier id) const {
109 const char *getOptionMetaVar(OptSpecifier id) const {
H A DOption.h183 bool matches(OptSpecifier ID) const;
/external/llvm/include/llvm/Option/
H A DOptSpecifier.h1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
17 /// OptSpecifier - Wrapper class for abstracting references to option IDs.
18 class OptSpecifier { class in namespace:llvm::opt
22 explicit OptSpecifier(bool) LLVM_DELETED_FUNCTION;
25 OptSpecifier() : ID(0) {} function in class:llvm::opt::OptSpecifier
26 /*implicit*/ OptSpecifier(unsigned _ID) : ID(_ID) {} function in class:llvm::opt::OptSpecifier
27 /*implicit*/ OptSpecifier(const Option *Opt);
33 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
34 bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
H A DArgList.h15 #include "llvm/Option/OptSpecifier.h"
43 OptSpecifier Id0, Id1, Id2;
55 const ArgList &_Args, OptSpecifier _Id0 = 0U,
56 OptSpecifier _Id1 = 0U, OptSpecifier _Id2 = 0U)
140 arg_iterator filtered_begin(OptSpecifier Id0 = 0U, OptSpecifier Id1 = 0U,
141 OptSpecifier Id2 = 0U) const {
153 void eraseArg(OptSpecifier Id);
162 bool hasArgNoClaim(OptSpecifier I
[all...]
H A DOptTable.h14 #include "llvm/Option/OptSpecifier.h"
67 const Info &getInfo(OptSpecifier Opt) const {
85 const Option getOption(OptSpecifier Opt) const;
88 const char *getOptionName(OptSpecifier id) const {
93 unsigned getOptionKind(OptSpecifier id) const {
98 unsigned getOptionGroupID(OptSpecifier id) const {
103 bool isOptionHelpHidden(OptSpecifier id) const;
106 const char *getOptionHelpText(OptSpecifier id) const {
112 const char *getOptionMetaVar(OptSpecifier id) const {
H A DOption.h172 bool matches(OptSpecifier ID) const;
/external/llvm/lib/Option/
H A DArgList.cpp47 void ArgList::eraseArg(OptSpecifier Id) {
58 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
66 Arg *ArgList::getLastArg(OptSpecifier Id) const {
78 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
93 OptSpecifier Id2) const {
107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id
[all...]
H A DOptTable.cpp82 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} function in class:OptSpecifier
155 const Option OptTable::getOption(OptSpecifier Opt) const {
163 bool OptTable::isOptionHelpHidden(OptSpecifier id) const {
268 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) {
331 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) {
H A DOption.cpp79 bool Option::matches(OptSpecifier Opt) const {
/external/clang/lib/Driver/
H A DArgList.cpp48 void ArgList::eraseArg(OptSpecifier Id) {
59 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
67 Arg *ArgList::getLastArg(OptSpecifier Id) const {
79 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
93 OptSpecifier Id2) const {
107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id
[all...]
H A DOptTable.cpp84 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {} function in class:OptSpecifier
158 const Option OptTable::getOption(OptSpecifier Opt) const {
267 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) {
330 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) {
H A DOption.cpp77 bool Option::matches(OptSpecifier Opt) const {
H A DCompilation.cpp363 OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD,
H A DTools.cpp934 OptSpecifier OnOpt,
935 OptSpecifier OffOpt,

Completed in 184 milliseconds