HomeSort by relevance Sort by last modified time
    Searched refs:Option (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/clang/include/clang/Driver/
OptSpecifier.h 1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
17 class Option;
19 /// OptSpecifier - Wrapper class for abstracting references to option IDs.
29 /*implicit*/ OptSpecifier(const Option *Opt);
Arg.h 19 #include "clang/Driver/Option.h"
28 /// \brief A concrete instance of a particular driver option.
34 /// particular option.
40 /// \brief The option this argument is an instance of.
41 const Option Opt;
47 /// \brief How this instance of the option was spelled.
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
68 Arg(const Option Opt, StringRef Spelling, unsigned Index,
70 Arg(const Option Opt, StringRef Spelling, unsigned Index,
74 Option getOption() const { return Opt;
    [all...]
Option.h 1 //===--- Option.h - Abstract Driver Options ---------------------*- C++ -*-===//
44 /// Option - Abstract representation for a single form of driver
47 /// An Option class represents a form of option that the driver
48 /// takes, for example how many arguments the option has and how
49 /// they can be provided. Individual option instances store
50 /// additional information about what group the option is a member
51 /// of (if any), if the option is an alias, and a number of
54 /// particular Option instance.
55 class Option {
    [all...]
  /external/llvm/include/llvm/Option/
OptSpecifier.h 1 //===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
15 class Option;
17 /// OptSpecifier - Wrapper class for abstracting references to option IDs.
27 /*implicit*/ OptSpecifier(const Option *Opt);
Option.h 1 //===--- 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
37 /// takes, for example how many arguments the option has and how
38 /// they can be provided. Individual option instances store
39 /// additional information about what group the option is a member
40 /// of (if any), if the option is an alias, and a number of
43 /// particular Option instance
    [all...]
Arg.h 20 #include "llvm/Option/Option.h"
27 /// \brief A concrete instance of a particular driver option.
33 /// particular option.
39 /// \brief The option this argument is an instance of.
40 const Option Opt;
46 /// \brief How this instance of the option was spelled.
65 Arg(const Option Opt, StringRef Spelling, unsigned Index,
67 Arg(const Option Opt, StringRef Spelling, unsigned Index,
69 Arg(const Option Opt, StringRef Spelling, unsigned Index
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebMenuItemInfo.h 43 Option,
50 : type(Option)
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 24 /* Llvm.llmodule -> string option */
27 CAMLlocal2(String, Option);
33 Option = Val_int(0);
35 Option = alloc(1, 0);
37 Store_field(Option, 0, String);
42 CAMLreturn(Option);
  /frameworks/compile/mclinker/include/mcld/Support/
CommandLine.h 32 bool parse(Option &pOption,
39 void printOptionDiff(const Option &pOption,
54 bool parse(Option &O,
60 void printOptionDiff(const Option &O,
74 bool parse(Option &O, StringRef ArgName, StringRef Arg, mcld::ZOption &Val);
76 virtual const char *getValueName() const { return "z-option"; }
77 void printOptionDiff(const Option &O,
  /external/clang/lib/Driver/
OptTable.cpp 1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
13 #include "clang/Driver/Option.h"
27 // version should come first; a Flag option should precede a Joined
28 // option, for example.
67 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
69 return B.Kind == Option::JoinedClass;
72 // Support lower_bound between info and an option name.
84 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}
101 if (Kind == Option::InputClass)
    [all...]
Option.cpp 1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "clang/Driver/Option.h"
20 Option::Option(const OptTable::Info *info, const OptTable *owner)
24 // have groups. This just simplifies option tracking, it is not an
31 Option::~Option() {
34 void Option::dump() const {
59 const Option Group = getGroup();
65 const Option Alias = getAlias()
    [all...]
  /external/llvm/lib/Option/
OptTable.cpp 1 //===--- 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"
26 // version should come first; a Flag option should precede a Joined
27 // option, for example.
67 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &
    [all...]
Option.cpp 1 //===--- 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)
26 // have groups. This just simplifies option tracking, it is not an
33 Option::~Option() {
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 35 /// cl Namespace - This namespace contains all of the command line option
41 // ParseCommandLineOptions - Command line option processing entry point.
47 // ParseEnvironmentOptions - Environment variable option processing alternate
70 // PrintOptionValues - Print option values.
71 // With -print-options print the difference between option values and defaults.
72 // With -print-all-options print all option values.
89 // ConsumeAfter - Indicates that this option is fed anything that follows the
91 // there are zero positional arguments, and a ConsumeAfter option is used).
94 // passed, unprocessed, to the ConsumeAfter option.
99 enum ValueExpected { // Is a value required for the option
    [all...]
PassNameParser.h 16 // appropriate command line option template). The FilteredPassNameParser<>
41 cl::Option *Opt;
46 void initialize(cl::Option &O) {
79 // printOptionInfo - Print out information about this option. Override the
81 virtual void printOptionInfo(const cl::Option &O, size_t GlobalWidth) const {
  /external/llvm/lib/
Makefile 14 Target ExecutionEngine Linker MC Object Option DebugInfo
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 134 Option[] options = commandLine.getOptions();
137 Option option = options[i]; local
138 String opt = option.getOpt();
169 bootClassPathDirs.add(option.getValue());
292 System.err.println("option");
365 Option versionOption = OptionBuilder.withLongOpt("version")
369 Option helpOption = OptionBuilder.withLongOpt("help")
373 Option outputDirOption = OptionBuilder.withLongOpt("output")
379 Option noParameterRegistersOption = OptionBuilder.withLongOpt("no-parameter-registers"
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 63 void Option::anchor() {}
99 static Option *RegisteredOptionList = 0;
101 void Option::addArgument() {
111 // Basic, shared command line option processing machinery.
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())
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildProvider.java 22 import com.android.tradefed.config.Option;
31 @Option(name="cts-install-path", description="the path to the cts installation to use")
  /external/chromium/third_party/libjingle/source/talk/base/
asyncpacketsocket.h 62 virtual int GetOption(Socket::Option opt, int* value) = 0;
63 virtual int SetOption(Socket::Option opt, int value) = 0;
asyncudpsocket.h 55 virtual int GetOption(Socket::Option opt, int* value);
56 virtual int SetOption(Socket::Option opt, int value);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelproxy.h 56 virtual int SetOption(talk_base::Socket::Option opt, int value);
61 typedef std::pair<talk_base::Socket::Option, int> OptionPair;
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 56 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID);
57 if (!Option.empty()) {
59 *Disable = cxstring::createDup((Twine("-Wno-") + Option).str());
60 return cxstring::createDup((Twine("-W") + Option).str());
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 116 Option[] options = commandLine.getOptions();
119 Option option = options[i]; local
120 String opt = option.getOpt();
365 Option versionOption = OptionBuilder.withLongOpt("version")
369 Option helpOption = OptionBuilder.withLongOpt("help")
373 Option outputOption = OptionBuilder.withLongOpt("output")
379 Option allowOdexOption = OptionBuilder.withLongOpt("allow-odex-instructions")
385 Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
392 Option dumpOption = OptionBuilder.withLongOpt("dump-to"
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
FormField.java 55 private final List<Option> options = new ArrayList<Option>();
105 public Iterator<Option> getOptions() {
107 return Collections.unmodifiableList(new ArrayList<Option>(options)).iterator();
261 * @param option a new available option for the question.
263 public void addOption(Option option) {
265 options.add(option);
295 for (Iterator<Option> i = getOptions(); i.hasNext();)
    [all...]

Completed in 833 milliseconds

1 2 3 4 5 6