Searched refs:Option (Results 1 - 25 of 99) sorted by relevance

1234

/external/webkit/Source/WebKit/chromium/public/
H A DWebMenuItemInfo.h43 Option, enumerator in enum:WebKit::WebMenuItemInfo::Type
50 : type(Option)
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c27 CAMLlocal2(String, Option);
33 Option = Val_int(0);
35 Option = alloc(1, 0);
37 Store_field(Option, 0, String);
42 CAMLreturn(Option);
/external/clang/include/clang/Driver/
H A DOptSpecifier.h1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
15 class Option;
27 /*implicit*/ OptSpecifier(const Option *Opt);
H A DArg.h26 class Option;
41 const Option *Opt;
63 Arg(const Option *Opt, unsigned Index, const Arg *BaseArg = 0);
64 Arg(const Option *Opt, unsigned Index,
66 Arg(const Option *Opt, unsigned Index,
70 const Option &getOption() const { return *Opt; }
H A DOption.h1 //===--- Option.h - Abstract Driver Options ---------------------*- C++ -*-===//
38 /// Option - Abstract representation for a single form of driver
41 /// An Option class represents a form of option that the driver
48 /// particular Option instance.
49 class Option { class in namespace:clang::driver
78 const Option *Group;
80 /// Option that this is an alias for, if any.
81 const Option *Alias;
84 Option(const OptTable::Info *Info, OptSpecifier ID,
85 const Option *Grou
[all...]
H A DOptTable.h1 //===--- OptTable.h - Option Table ------------------------------*- C++ -*-===//
21 class Option;
23 /// \brief Provide access to the Option info table.
25 /// The OptTable class provides a layer of indirection which allows Option
29 /// parts of the driver still use Option instances where convenient.
50 mutable Option **Options;
53 const Option *TheInputOption;
56 const Option *TheUnknownOption;
65 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
69 Option *CreateOptio
[all...]
H A DArgList.h29 class Option;
93 /// check for the presence of Arg instances for a particular Option
379 void AddFlagArg(const Arg *BaseArg, const Option *Opt) {
386 void AddPositionalArg(const Arg *BaseArg, const Option *Opt,
395 void AddSeparateArg(const Arg *BaseArg, const Option *Opt,
403 void AddJoinedArg(const Arg *BaseArg, const Option *Opt,
411 Arg *MakeFlagArg(const Arg *BaseArg, const Option *Opt) const;
415 Arg *MakePositionalArg(const Arg *BaseArg, const Option *Opt,
420 Arg *MakeSeparateArg(const Arg *BaseArg, const Option *Opt,
425 Arg *MakeJoinedArg(const Arg *BaseArg, const Option *Op
[all...]
/external/clang/lib/Driver/
H A DOptTable.cpp1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
13 #include "clang/Driver/Option.h"
59 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
61 return B.Kind == Option::JoinedClass;
76 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}
82 Options(new Option*[NumOptionInfos]),
92 if (Kind == Option::InputClass) {
95 } else if (Kind == Option::UnknownClass) {
98 } else if (Kind != Option
273 const std::string &Option = OptionHelp[i].first; local
[all...]
H A DOption.cpp1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "clang/Driver/Option.h"
20 Option::Option(const OptTable::Info *info, OptSpecifier _ID, function in class:Option
21 const Option *_Group, const Option *_Alias)
31 Option::~Option() {
34 void Option::dump() const {
69 bool Option
[all...]
H A DArg.cpp12 #include "clang/Driver/Option.h"
19 Arg::Arg(const Option *_Opt, unsigned _Index, const Arg *_BaseArg)
24 Arg::Arg(const Option *_Opt, unsigned _Index,
31 Arg::Arg(const Option *_Opt, unsigned _Index,
91 case Option::RenderValuesStyle:
96 case Option::RenderCommaJoinedStyle: {
108 case Option::RenderJoinedStyle:
115 case Option::RenderSeparateStyle:
H A DCC1AsOptions.cpp11 #include "clang/Driver/Option.h"
21 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, PARAM, FLAGS, \
H A DDriverOptions.cpp12 #include "clang/Driver/Option.h"
20 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, PARAM, FLAGS, \
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Dmain.java125 Option[] options = commandLine.getOptions();
128 Option option = options[i];
343 Option versionOption = OptionBuilder.withLongOpt("version")
347 Option helpOption = OptionBuilder.withLongOpt("help")
351 Option outputDirOption = OptionBuilder.withLongOpt("output")
357 Option noParameterRegistersOption = OptionBuilder.withLongOpt("no-parameter-registers")
362 Option deodexerantOption = OptionBuilder.withLongOpt("deodex")
367 Option useLocalsOption = OptionBuilder.withLongOpt("use-locals")
372 Option sequentialLabelsOption = OptionBuilder.withLongOpt("sequential-labels")
377 Option noDebugInfoOptio
[all...]
/external/llvm/lib/Support/
H A DCommandLine.cpp63 void Option::anchor() {}
99 static Option *RegisteredOptionList = 0;
101 void Option::addArgument() {
116 static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
117 SmallVectorImpl<Option*> &SinkOpts,
118 StringMap<Option*> &OptionsMap) {
120 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
121 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
162 static Option *LookupOption(StringRef &Arg, StringRef &Value,
163 const StringMap<Option*>
344 getOptionPred(StringRef Name, size_t &Length, bool (*Pred)(const Option*), const StringMap<Option*> &OptionsMap) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasyncudpsocket.h55 virtual int GetOption(Socket::Option opt, int* value);
56 virtual int SetOption(Socket::Option opt, int value);
H A Dasyncpacketsocket.h62 virtual int GetOption(Socket::Option opt, int* value) = 0;
63 virtual int SetOption(Socket::Option opt, int value) = 0;
H A Dasynctcpsocket.h53 virtual int GetOption(Socket::Option opt, int* value);
54 virtual int SetOption(Socket::Option opt, int value);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dtransportchannelproxy.h56 virtual int SetOption(talk_base::Socket::Option opt, int value);
61 typedef std::pair<talk_base::Socket::Option, int> OptionPair;
/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp57 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID); local
58 if (!Option.empty()) {
60 *Disable = createCXString((Twine("-Wno-") + Option).str());
61 return createCXString((Twine("-W") + Option).str());
/external/llvm/include/llvm/Support/
H A DCommandLine.h109 NotHidden = 0x00, // Option included in -help & -help-hidden
145 // Option Base class
148 class Option { class in namespace:llvm::cl
177 Option *NextRegistered; // Singly linked list of registered options.
220 explicit Option(enum NumOccurrencesFlag OccurrencesFlag, function in class:llvm::cl::Option
234 Option *getNextRegisteredOption() const { return NextRegistered; }
258 virtual ~Option() {}
271 void apply(Option &O) const { O.setDescription(Desc); }
279 void apply(Option &O) const { O.setValueStr(Desc); }
331 // The default value safely does nothing. Option valu
[all...]
H A DPassNameParser.h41 cl::Option *Opt;
46 void initialize(cl::Option &O) {
81 virtual void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const {
/external/smali/smali/src/main/java/org/jf/smali/
H A Dmain.java114 Option[] options = commandLine.getOptions();
117 Option option = options[i];
368 Option versionOption = OptionBuilder.withLongOpt("version")
372 Option helpOption = OptionBuilder.withLongOpt("help")
376 Option outputOption = OptionBuilder.withLongOpt("output")
382 Option allowOdexOption = OptionBuilder.withLongOpt("allow-odex-instructions")
388 Option dumpOption = OptionBuilder.withLongOpt("dump-to")
394 Option sortOption = OptionBuilder.withLongOpt("sort")
398 Option noFixStringConstOption = OptionBuilder.withLongOpt("no-fix-string-const")
402 Option noFixGotoOptio
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dfont_settings.js47 $('standard-font-family').appendChild(new Option(placeholder));
48 $('serif-font-family').appendChild(new Option(placeholder));
49 $('sans-serif-font-family').appendChild(new Option(placeholder));
50 $('fixed-font-family').appendChild(new Option(placeholder));
51 $('font-encoding').appendChild(new Option(placeholder));
149 element.appendChild(new Option(text, value, false, selected));
/external/chromium/webkit/glue/
H A Dwebmenuitem.h17 OPTION = WebKit::WebMenuItemInfo::Option,
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h65 inline bool parse(Option &O, StringRef ArgName, StringRef ArgValue,
71 parse(Option &O, StringRef ArgName, StringRef ArgValue,

Completed in 1019 milliseconds

1234