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

1 2 3 4 5

  /external/clang/include/clang/Driver/
Option.h 1 //===--- Option.h - Abstract Driver Options ---------------------*- C++ -*-===//
23 /// Option - Abstract representation for a single form of driver
26 /// An Option class represents a form of option that the driver
27 /// takes, for example how many arguments the option has and how
28 /// they can be provided. Individual option instances store
29 /// additional information about what group the option is a member
30 /// of (if any), if the option is an alias, and a number of
33 /// particular Option instance.
34 class Option {
    [all...]
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);
Arg.h 21 class Option;
23 /// Arg - A concrete instance of a particular driver option.
29 /// particular option.
35 /// The option this argument is an instance of.
36 const Option *Opt;
57 Arg(const Option *Opt, unsigned Index, const Arg *BaseArg = 0);
58 Arg(const Option *Opt, unsigned Index,
60 Arg(const Option *Opt, unsigned Index,
64 const Option &getOption() const { return *Opt; }
OptTable.h 1 //===--- OptTable.h - Option Table ------------------------------*- C++ -*-===//
35 class Option;
37 /// OptTable - Provide access to the Option info table.
39 /// The OptTable class provides a layer of indirection which allows Option
43 /// parts of the driver still use Option instances where convenient.
46 /// Info - Entry for a single option instance in the option data table.
59 /// The static option information table.
63 /// The lazily constructed options table, indexed by option::ID - 1.
64 mutable Option **Options
    [all...]
ArgList.h 29 class Option;
93 /// check for the presence of Arg instances for a particular Option
156 /// eraseArg - Remove any option matching \arg Id.
163 /// hasArg - Does the arg list contain any option matching \arg Id.
228 /// hasFlag - Given an option \arg Pos and its negative form \arg
229 /// Neg, return true if the option is present, false if the
230 /// negation is present, and \arg Default if neither option is
231 /// given. If both the option and its negation are present, the
250 /// name instead of the first option value.
253 /// the option specifier
    [all...]
  /external/clang/lib/Driver/
Option.cpp 1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "clang/Driver/Option.h"
20 Option::Option(OptionClass _Kind, OptSpecifier _ID, const char *_Name,
21 const OptionGroup *_Group, const Option *_Alias)
27 // have groups. This just simplifies option tracking, it is not an
58 Option::~Option() {
61 void Option::dump() const {
96 bool Option::matches(OptSpecifier Opt) const
    [all...]
OptTable.cpp 1 //===--- OptTable.cpp - Option Table Implementation -----------------------===//
13 #include "clang/Driver/Option.h"
26 // version should come first; a Flag option should precede a Joined
27 // option, for example.
59 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
61 return B.Kind == Option::JoinedClass;
64 // Support lower_bound between info and an option name.
76 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}
82 Options(new Option*[NumOptionInfos])
    [all...]
Arg.cpp 12 #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:
CC1AsOptions.cpp 11 #include "clang/Driver/Option.h"
19 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, PARAM, FLAGS, \
  /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 29 bool parse(Option &O,
35 void printOptionDiff(const Option &O,
49 bool parse(Option &O, StringRef ArgName, StringRef Arg, mcld::MCLDDirectory &Val);
52 void printOptionDiff(const Option &O,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 125 Option[] options = commandLine.getOptions();
128 Option option = options[i]; local
129 String opt = option.getOpt();
160 bootClassPathDirs.add(option.getValue());
266 System.err.println("option");
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"
    [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.
48 // ParseEnvironmentOptions - Environment variable option processing alternate
72 // PrintOptionValues - Print option values.
73 // With -print-options print the difference between option values and defaults.
74 // With -print-all-options print all option values.
91 // ConsumeAfter - Indicates that this option is fed anything that follows the
93 // there are zero positional arguments, and a ConsumeAfter option is used).
96 // passed, unprocessed, to the ConsumeAfter option.
101 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/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 57 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID);
58 if (!Option.empty()) {
60 *Disable = createCXString((Twine("-Wno-") + Option).str());
61 return createCXString((Twine("-W") + Option).str());
  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 18 bool parser<mcld::sys::fs::Path>::parse(llvm::cl::Option &O,
29 void parser<mcld::sys::fs::Path>::printOptionDiff(const llvm::cl::Option &O,
54 bool parser<mcld::MCLDDirectory>::parse(llvm::cl::Option &O,
63 void parser<mcld::MCLDDirectory>::printOptionDiff(const llvm::cl::Option &O,
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 114 Option[] options = commandLine.getOptions();
117 Option option = options[i]; local
118 String opt = option.getOpt();
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"
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
PlanCreator.java 29 import com.android.tradefed.config.Option;
30 import com.android.tradefed.config.Option.Importance;
46 @Option (name = "plan", shortName = 'p', description = "the name of the plan to create",
50 @Option (name = "session", shortName = 's', description = "the session id to derive from",
54 @Option (name = "result", shortName = 'r',
59 @Option(name = CtsTest.RUN_KNOWN_FAILURES_OPTION)
70 * All {@link Option} fields must be populated via
77 * Create a {@link PlanCreator} using the specified option values.
88 * {@link Option} values must all be set before this is called.
107 * {@link Option} values must all be set before this is called
    [all...]
  /external/chromium/webkit/glue/
webmenuitem.h 17 OPTION = WebKit::WebMenuItemInfo::Option,

Completed in 1925 milliseconds

1 2 3 4 5