Searched defs:option (Results 1 - 5 of 5) sorted by relevance

/art/compiler/dex/
H A Dcompiler_ir.h42 * Structure abstracting pass option values, which can be of type string or integer.
45 OptionContent(const OptionContent& option) : argument
46 type(option.type), container(option.container, option.type) {}
64 * Allows for a transparent display of the option content.
66 friend std::ostream& operator<<(std::ostream& out, const OptionContent& option) { argument
67 if (option.type == kString) {
68 out << option.container.s;
70 out << option
[all...]
/art/cmdline/
H A Dcmdline_types.h75 * The "transport" option is required, as is "address" if server=n.
97 "Can't parse JDWP option '" + jdwp_option + "' in '" + options + "'");
104 // We fail to parse this JDWP option.
135 return Result::Failure("JDWP option 'server' must be 'y' or 'n'");
143 return Result::Failure("JDWP option 'suspend' must be 'y' or 'n'");
167 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
169 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
443 static gc::CollectorType ParseCollectorType(const std::string& option) { argument
444 if (option == "MS" || option
480 Parse(const std::string& option) argument
755 ParseAndAppend(const std::string& option, TestProfilerOptions& existing) argument
[all...]
/art/runtime/
H A Djava_vm_ext.cc801 JavaVMOption* option = &args->options[i]; local
802 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
H A Druntime.h162 void AddCompilerOption(std::string option) { argument
163 compiler_options_.push_back(option);
725 // The option 'native_bridge_library_filename' specifies the name of the native bridge.
731 // and trying again. This option is only inspected when we're running as a
/art/dex2oat/
H A Ddex2oat.cc285 UsageError(" Has priority over the --compiler-filter option. Intended for ");
292 UsageError(" Honored only by Optimizing. Has priority over the --compiler-filter option.");
332 UsageError(" Used to specify a pass specific option. The setting itself must be integer.");
451 Usage("Missing char %c in option %s\n", c, s.c_str());
457 static void ParseDouble(const std::string& option, char after_char, double min, double max, argument
460 ParseStringAfterChar(option, after_char, &substring);
475 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());
542 // Parse the arguments from the command line. In case of an unrecognized option or impossible
588 const StringPiece option(arg
[all...]

Completed in 134 milliseconds