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

12345678

/external/chromium_org/components/cloud_devices/common/
H A Ddescription_items.h27 // static bool IsValid(const Option&);
40 // Option specifies data type for <VALUE>.
42 template <class Option, class Traits>
59 const Option& operator[](size_t i) const { return options_[i]; }
61 bool Contains(const Option& option) const {
66 void AddOption(const Option& option) { options_.push_back(option); }
69 typedef std::vector<Option> OptionVector;
78 // Option specifies data type for <VALUE>.
80 template <class Option, class Traits>
100 const Option
[all...]
H A Ddescription_items_inl.h19 template <class Option, class Traits>
20 ListCapability<Option, Traits>::ListCapability() {
24 template <class Option, class Traits>
25 ListCapability<Option, Traits>::~ListCapability() {
28 template <class Option, class Traits>
29 bool ListCapability<Option, Traits>::IsValid() const {
39 template <class Option, class Traits>
40 bool ListCapability<Option, Traits>::LoadFrom(
51 Option option;
59 template <class Option, clas
[all...]
/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/chromium_org/third_party/WebKit/public/web/
H A DWebMenuItemInfo.h43 Option, enumerator in enum:blink::WebMenuItemInfo::Type
51 : type(Option)
/external/llvm/include/llvm/Option/
H A DOptSpecifier.h1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
17 class Option;
29 /*implicit*/ OptSpecifier(const Option *Opt);
H A DOption.h1 //===--- Option.h - Abstract Driver Options ---------------------*- C++ -*-===//
15 #include "llvm/Option/OptTable.h"
33 /// Option - Abstract representation for a single form of driver
36 /// An Option class represents a form of option that the driver
43 /// particular Option instance.
44 class Option { class in namespace:llvm::opt
72 Option(const OptTable::Info *Info, const OptTable *Owner);
73 ~Option();
95 const Option getGroup() const {
101 const Option getAlia
[all...]
H A DArg.h20 #include "llvm/Option/Option.h"
37 const Option Opt;
62 Arg(const Option Opt, StringRef Spelling, unsigned Index,
64 Arg(const Option Opt, StringRef Spelling, unsigned Index,
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
70 const Option &getOption() const { return Opt; }
/external/chromium_org/third_party/webrtc/
H A Dcommon.h69 struct Option : BaseOption { struct in class:webrtc::Config
70 explicit Option(T* v): value(v) {} function in struct:webrtc::Config::Option
71 ~Option() {
105 const T* t = static_cast<Option<T>*>(it->second)->value;
117 it = new Option<T>(value);
/external/chromium_org/ppapi/generators/
H A Didl_lint.py13 from idl_option import GetOption, Option, ParseOptions namespace
18 Option('wcomment', 'Disable warning for missing comment.')
19 Option('wenum', 'Disable warning for missing enum value.')
20 Option('winline', 'Disable warning for inline blocks.')
21 Option('wname', 'Disable warning for inconsistent interface name.')
22 Option('wnone', 'Disable all warnings.')
23 Option('wparam', 'Disable warning for missing [in|out|inout] on param.')
24 Option('wpass', 'Disable warning for mixed passByValue and returnByValue.')
H A Didl_option.py18 class Option(object): class in inherits:object
24 raise RuntimeError('Option "%s" already exists.' % name)
72 Option('h', 'Help', callfunc=DumpHelp)
73 Option('help', 'Help', callfunc=DumpHelp)
74 Option('verbose', 'Verbose')
75 Option('test', 'Test the IDL scripts')
/external/llvm/lib/Option/
H A DOptTable.cpp1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
10 #include "llvm/Option/OptTable.h"
11 #include "llvm/Option/Arg.h"
12 #include "llvm/Option/ArgList.h"
13 #include "llvm/Option/Option.h"
72 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
74 return B.Kind == Option::JoinedClass;
85 OptSpecifier::OptSpecifier(const Option *Op
344 const std::string &Option = OptionHelp[i].first; local
[all...]
H A DOption.cpp1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "llvm/Option/Option.h"
12 #include "llvm/Option/Arg.h"
13 #include "llvm/Option/ArgList.h"
22 Option::Option(const OptTable::Info *info, const OptTable *owner) function in class:Option
38 Option::~Option() {
41 void Option
[all...]
H A DArg.cpp10 #include "llvm/Option/Arg.h"
13 #include "llvm/Option/ArgList.h"
14 #include "llvm/Option/Option.h"
20 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index, const Arg *_BaseArg)
25 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index,
32 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index,
92 case Option::RenderValuesStyle:
97 case Option::RenderCommaJoinedStyle: {
109 case Option
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp64 LoopHintAttr::OptionType Option = local
75 if (Option == LoopHintAttr::Vectorize || Option == LoopHintAttr::Interleave ||
76 Option == LoopHintAttr::Unroll) {
89 } else if (Option == LoopHintAttr::VectorizeWidth ||
90 Option == LoopHintAttr::InterleaveCount ||
91 Option == LoopHintAttr::UnrollCount) {
103 return LoopHintAttr::CreateImplicit(S.Context, Option, ValueInt,
136 int Option = LH->getOption(); local
140 switch (Option) {
[all...]
/external/llvm/lib/Support/
H A DCommandLine.cpp68 void Option::anchor() {}
105 static Option *RegisteredOptionList = nullptr;
107 void Option::addArgument() {
115 void Option::removeArgument() {
145 static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
146 SmallVectorImpl<Option*> &SinkOpts,
147 StringMap<Option*> &OptionsMap) {
150 Option *CAOpt = nullptr; // The ConsumeAfter option if it exists.
151 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
162 errs() << ProgramName << ": CommandLine Error: Option '"
382 getOptionPred(StringRef Name, size_t &Length, bool (*Pred)(const Option*), const StringMap<Option*> &OptionsMap) argument
1305 const char *Option = getOption(i); local
[all...]
/external/llvm/lib/
H A DMakefile14 ExecutionEngine Linker LTO MC Object Option DebugInfo \
/external/llvm/unittests/
H A DMakefile13 LineEditor Linker MC Option Support Transforms
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp52 struct Option struct in namespace:de::cmdline
69 Option (const char* shortName_, const char* longName_, const char* description_, const char* defaultValue_ = DE_NULL) function in struct:de::cmdline::Option
80 //! Option with custom parsing function.
81 Option (const char* shortName_, const char* longName_, const char* description_, ParseFunc parse_, const char* defaultValue_ = DE_NULL) function in struct:de::cmdline::Option
92 //! Option that uses named values.
93 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<ValueType>* namedValuesEnd_, const char* defaultValue_ = DE_NULL) function in struct:de::cmdline::Option
104 //! Option that uses named values.
106 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType> (&namedValues_)[NumNamedValues], const char* defaultValue_ = DE_NULL) function in struct:de::cmdline::Option
118 template<class Option>
121 typedef typename Option
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Dmain.java110 Option[] clOptions = commandLine.getOptions();
113 Option option = clOptions[i];
327 Option versionOption = OptionBuilder.withLongOpt("version")
331 Option helpOption = OptionBuilder.withLongOpt("help")
335 Option outputDirOption = OptionBuilder.withLongOpt("output")
341 Option noParameterRegistersOption = OptionBuilder.withLongOpt("no-parameter-registers")
346 Option deodexerantOption = OptionBuilder.withLongOpt("deodex")
351 Option useLocalsOption = OptionBuilder.withLongOpt("use-locals")
356 Option sequentialLabelsOption = OptionBuilder.withLongOpt("sequential-labels")
361 Option noDebugInfoOptio
[all...]
/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp58 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID); local
59 if (!Option.empty()) {
61 *Disable = cxstring::createDup((Twine("-Wno-") + Option).str());
62 return cxstring::createDup((Twine("-W") + Option).str());
/external/llvm/unittests/Option/
H A DMakefile1 ##===- unittests/Option/Makefile ---------------------------*- Makefile -*-===##
11 TESTNAME = Option
22 $(Echo) "Building Driver Option tables with tblgen"
/external/llvm/include/llvm/Support/
H A DCommandLine.h107 NotHidden = 0x00, // Option included in -help & -help-hidden
141 // Option Category class
155 // The general Option Category (used as default category).
159 // Option Base class
162 class Option { class in namespace:llvm::cl
191 Option *NextRegistered; // Singly linked list of registered options.
237 explicit Option(enum NumOccurrencesFlag OccurrencesFlag, function in class:llvm::cl::Option
257 Option *getNextRegisteredOption() const { return NextRegistered; }
281 virtual ~Option() {}
294 void apply(Option
[all...]
/external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
H A DMain.java31 import io.airlift.command.Option;
81 @Option(name = { "-X", "--request" }, description = "Specify request command to use")
84 @Option(name = { "-d", "--data" }, description = "HTTP POST data")
87 @Option(name = { "-H", "--header" }, description = "Custom header to pass to server")
90 @Option(name = { "-A", "--user-agent" }, description = "User-Agent to send to server")
93 @Option(name = "--connect-timeout", description = "Maximum time allowed for connection (seconds)")
96 @Option(name = "--read-timeout", description = "Maximum time allowed for reading data (seconds)")
99 @Option(name = { "-L", "--location" }, description = "Follow redirects")
102 @Option(name = { "-k", "--insecure" },
106 @Option(nam
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DFormField.java55 private final List<Option> options = new ArrayList<Option>();
105 public Iterator<Option> getOptions() {
107 return Collections.unmodifiableList(new ArrayList<Option>(options)).iterator();
263 public void addOption(Option option) {
295 for (Iterator<Option> i = getOptions(); i.hasNext();) {
326 public static class Option { class in class:FormField
331 public Option(String value) { method in class:FormField.Option
335 public Option(String label, String value) { method in class:FormField.Option
387 Option othe
[all...]
/external/llvm/include/llvm/IR/
H A DLegacyPassNameParser.h44 cl::Option *Opt;
49 void initialize(cl::Option &O) {
84 void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const override {

Completed in 450 milliseconds

12345678