Searched defs:substring (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dparsed_options.cc457 std::string substring; local
458 if (!ParseStringAfterChar(option, '=', &substring)) {
462 if (substring == "HSpaceCompact") {
465 gc::CollectorType collector_type = ParseCollectorType(substring);
469 Usage("Unknown -XX:BackgroundGC option %s\n", substring.c_str());
764 UsageMessage(stream, " -Xjnitrace:substring (eg NativeClass or nativeMethod)\n");
901 std::string substring; local
902 if (!ParseStringAfterChar(option, after_char, &substring)) {
909 std::stringstream iss(substring);
915 value = strtod(substring
[all...]
/art/dex2oat/
H A Ddex2oat.cc764 std::string substring; local
765 ParseStringAfterChar(option, after_char, &substring);
770 std::stringstream iss(substring);
776 value = strtod(substring.c_str(), &end);
780 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());

Completed in 111 milliseconds