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

/art/runtime/
H A Dparsed_options.cc868 bool ParsedOptions::ParseInteger(const std::string& s, char after_char, int* parsed_value) { argument
869 std::string::size_type colon = s.find(after_char);
871 Usage("Missing char %c in option %s\n", after_char, s.c_str());
885 bool ParsedOptions::ParseUnsignedInteger(const std::string& s, char after_char, argument
888 if (!ParseInteger(s, after_char, &i)) {
899 bool ParsedOptions::ParseDouble(const std::string& option, char after_char, argument
902 if (!ParseStringAfterChar(option, after_char, &substring)) {
/art/dex2oat/
H A Ddex2oat.cc762 void ParseDouble(const std::string& option, char after_char, argument
765 ParseStringAfterChar(option, after_char, &substring);

Completed in 7 milliseconds