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

1 2

  /external/clang/lib/Driver/
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...]
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...]
  /external/llvm/lib/Option/
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...]
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...]
  /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/webkit/Source/WebKit/chromium/public/
WebMenuItemInfo.h 43 Option,
50 : type(Option)
  /external/chromium/third_party/libjingle/source/talk/base/
socket.h 181 enum Option {
187 virtual int GetOption(Option opt, int* value) = 0;
188 virtual int SetOption(Option opt, int value) = 0;
  /external/clang/include/clang/Driver/
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/clang/tools/driver/
driver.cpp 22 #include "clang/Driver/Option.h"
79 /// 'xOPTION': Removes all instances of the literal argument OPTION.
81 /// 'XOPTION': Removes all instances of the literal argument OPTION,
122 std::string Option = Edit.substr(1, std::string::npos);
124 if (Option == Args[i]) {
406 // Note that ParseDiagnosticArgs() uses the cc1 option table.
  /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/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/webkit/Source/WebCore/editing/
TypingCommand.h 51 enum Option {
  /external/webkit/Source/WebKit/qt/Api/
qwebkitplatformplugin.h 7 * version 2 of the License, or (at your option) any later version.
41 enum ItemType { Option, Group, Separator };
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
qwebkitplatformplugin.h 7 * version 2 of the License, or (at your option) any later version.
40 enum ItemType { Option, Group, Separator };
  /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/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 95 // Call these to get/set option values to tailor this PseudoTcp
97 // If an unrecognized option is set or got, an assertion will fire.
98 enum Option {
104 void GetOption(Option opt, int* value);
105 void SetOption(Option opt, int value);
  /external/llvm/lib/MC/
MachObjectWriter.cpp 401 const std::string &Option = Options[i];
402 WriteBytes(Option.c_str(), Option.size() + 1);
403 BytesWritten += Option.size() + 1;
745 // Add the linker option load commands sizes.
    [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/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 308 /* lltype -> string option */
394 value Option = alloc(1, 0);
395 Field(Option, 0) = (value) Ty;
396 CAMLreturn(Option);
536 /* llvalue -> int -> llvalue option */
541 value Option = alloc(1, 0);
542 Field(Option, 0) = (value) MD;
543 CAMLreturn(Option);
575 /* llvalue -> string option */
582 CAMLlocal2(Option, Str)
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /prebuilts/misc/common/commons-cli/
commons-cli-1.2.jar 
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 630 milliseconds

1 2