Home
last modified time | relevance | path

Searched refs:after_char (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dparsed_options.h121 bool ParseStringAfterChar(const std::string& option, char after_char, std::string* parsed_value);
122 bool ParseInteger(const std::string& option, char after_char, int* parsed_value);
123 bool ParseUnsignedInteger(const std::string& option, char after_char, unsigned int* parsed_value);
124 bool ParseDouble(const std::string& option, char after_char, double min, double max,
Dparsed_options.cc867 bool ParsedOptions::ParseInteger(const std::string& s, char after_char, int* parsed_value) { in ParseInteger() argument
868 std::string::size_type colon = s.find(after_char); in ParseInteger()
870 Usage("Missing char %c in option %s\n", after_char, s.c_str()); in ParseInteger()
884 bool ParsedOptions::ParseUnsignedInteger(const std::string& s, char after_char, in ParseUnsignedInteger() argument
887 if (!ParseInteger(s, after_char, &i)) { in ParseUnsignedInteger()
898 bool ParsedOptions::ParseDouble(const std::string& option, char after_char, in ParseDouble() argument
901 if (!ParseStringAfterChar(option, after_char, &substring)) { in ParseDouble()
/art/dex2oat/
Ddex2oat.cc771 void ParseDouble(const std::string& option, char after_char, in ParseDouble() argument
774 ParseStringAfterChar(option, after_char, &substring); in ParseDouble()