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

/art/runtime/
H A Dparsed_options.cc107 static gc::CollectorType ParseCollectorType(const std::string& option) { argument
108 if (option == "MS" || option == "nonconcurrent") {
110 } else if (option == "CMS" || option == "concurrent") {
112 } else if (option == "SS") {
114 } else if (option == "GSS") {
116 } else if (option == "CC") {
118 } else if (option == "MC") {
125 bool ParsedOptions::ParseXGcOption(const std::string& option) { argument
899 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
[all...]
H A Djni_internal.cc3022 JavaVMOption* option = &args->options[i]; local
3023 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
/art/dex2oat/
H A Ddex2oat.cc756 Usage("Missing char %c in option %s\n", c, s.c_str());
762 void ParseDouble(const std::string& option, char after_char, argument
765 ParseStringAfterChar(option, after_char, &substring);
780 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());
873 const StringPiece option(argv[i]);
876 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
878 if (option.starts_with("--dex-file=")) {
879 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
880 } else if (option
[all...]

Completed in 101 milliseconds