HomeSort by relevance Sort by last modified time
    Searched defs:Option (Results 26 - 50 of 75) sorted by null

12 3

  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 52 struct Option
68 //! Construct generic option (string, int, boolean).
69 Option (const char* shortName_, const char* longName_, const char* description_, const char* defaultValue_ = DE_NULL)
80 //! Option with custom parsing function.
81 Option (const char* shortName_, const char* longName_, const char* description_, ParseFunc parse_, const char* defaultValue_ = DE_NULL)
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)
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)
118 template<class Option>
    [all...]
  /external/llvm/include/llvm/Option/
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...]
  /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"
72 assert(((A.Kind == Option::JoinedClass) ^ (B.Kind == Option::JoinedClass)) &&
74 return B.Kind == Option::JoinedClass;
78 // Support lower_bound between info and an option name
    [all...]
  /external/regex-re2/util/
pcre.h 213 // "(?s)" has the same effect as the PCRE_DOTALL option.
214 enum Option {
224 PCRE(const char* pattern, Option option);
226 PCRE(const string& pattern, Option option);
444 // Type of match (TODO: Should be restructured as an Option)
463 void Init(const char* pattern, Option option, int match_limit,
505 Option options_
533 PCRE::Option option() const { return option_; } function in class:re2::PCRE_Options
    [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...]
  /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...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 98 // Call these to get/set option values to tailor this PseudoTcp
100 // If an unrecognized option is set or got, an assertion will fire.
104 enum Option {
110 void GetOption(Option opt, int* value);
111 void SetOption(Option opt, int value);
194 // Apply a TCP option that has been read from the header.
197 // Apply window scale option.
  /external/llvm/lib/MC/
MachObjectWriter.cpp 440 const std::string &Option = Options[i];
441 WriteBytes(Option.c_str(), Option.size() + 1);
442 BytesWritten += Option.size() + 1;
813 // Add the linker option load commands sizes.
    [all...]
  /external/chromium_org/ppapi/generators/
idl_parser.py 36 from idl_option import GetOption, Option, ParseOptions
42 Option('build_debug', 'Debug tree building.')
43 Option('parse_debug', 'Debug parse reduction steps.')
44 Option('token_debug', 'Debug token generation.')
45 Option('dump_tree', 'Dump the tree.')
46 Option('srcroot', 'Working directory.', default=os.path.join('..', 'api'))
47 Option('include_private', 'Include private IDL directory in default API paths.')
362 # Inline blocks define option code to be emitted based on language tag,
623 p[0] = self.BuildProduction('Option', p, 2, children)
    [all...]
  /external/clang/lib/Parse/
ParsePragma.cpp 605 Token Option;
618 IdentifierLoc::create(Actions.Context, Info->Option.getLocation(),
619 Info->Option.getIdentifierInfo());
624 SourceRange(Info->Option.getLocation(), Info->Value.getLocation());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
miniport.h 145 UCHAR Option;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
optparse.py 1 """A powerful, extensible, and easy-to-use option parser.
26 __all__ = ['Option',
85 # Id: option.py 522 2006-06-11 16:22:03Z gward
107 Raised if an Option instance is created with invalid or
111 def __init__(self, msg, option):
113 self.option_id = str(option)
117 return "option %s: %s" % (self.option_id, self.msg)
128 Raised if an invalid option value is encountered on the command
134 Raised if an invalid option is seen on the command line.
140 return _("no such option: %s") % self.opt_st
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
optparse.py 1 """A powerful, extensible, and easy-to-use option parser.
26 __all__ = ['Option',
85 # Id: option.py 522 2006-06-11 16:22:03Z gward
107 Raised if an Option instance is created with invalid or
111 def __init__(self, msg, option):
113 self.option_id = str(option)
117 return "option %s: %s" % (self.option_id, self.msg)
128 Raised if an invalid option value is encountered on the command
134 Raised if an invalid option is seen on the command line.
140 return _("no such option: %s") % self.opt_st
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 372 Option option = Option.get(element); local
373 String optionId = option.id;
374 int optionMinSdk = option.minSdk;
375 int optionMinBuildApi = option.minBuild;
484 Option option = Option.get(element); local
485 String optionId = option.id
569 Option option = Option.get(element); local
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 561 LoopHintAttr::OptionType Option = LH->getOption();
565 switch (Option) {
584 switch (Option) {
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 68 void Option::anchor() {}
105 static Option *RegisteredOptionList = nullptr;
107 void Option::addArgument() {
115 void Option::removeArgument() {
122 // This collects the different option categories that have been registered.
126 // Initialise the general option category.
134 }) == 0 && "Duplicate option categories");
140 // Basic, shared command line option processing machinery.
145 static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
146 SmallVectorImpl<Option*> &SinkOpts
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_optparse.py 20 from optparse import make_option, Option, \
195 # -- Test make_option() aka Option -------------------------------------
211 "at least one option string must be supplied")
215 "invalid option string 'b': must be at least two characters long",
220 "invalid short option string '--': must be "
226 "invalid long option string '---': "
232 "option -b: invalid keyword arguments: bar, foo",
237 "option -b: invalid action: 'foo'",
242 "option -b: invalid option type: 'foo'"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_optparse.py 20 from optparse import make_option, Option, \
195 # -- Test make_option() aka Option -------------------------------------
211 "at least one option string must be supplied")
215 "invalid option string 'b': must be at least two characters long",
220 "invalid short option string '--': must be "
226 "invalid long option string '---': "
232 "option -b: invalid keyword arguments: bar, foo",
237 "option -b: invalid action: 'foo'",
242 "option -b: invalid option type: 'foo'"
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpsapi.h 284 DHCP_OPTION Option;
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 366 /* lltype -> string option */
457 value Option = alloc(1, 0);
458 Field(Option, 0) = (value) Ty;
459 CAMLreturn(Option);
621 /* llvalue -> int -> llvalue option */
626 value Option = alloc(1, 0);
627 Field(Option, 0) = (value) MD;
628 CAMLreturn(Option);
660 /* llvalue -> string option */
667 CAMLlocal2(Option, Str)
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-cli-1.2.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/commons-cli/commons-cli/1.0/
commons-cli-1.0.jar 
  /prebuilts/misc/common/commons-cli/
commons-cli-1.2.jar 

Completed in 2747 milliseconds

12 3