Searched refs:colon (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Druntime.cc309 std::string::size_type colon = s.find(':'); local
310 if (colon == std::string::npos) {
313 const char* begin = &s[colon + 1];
H A Ddebugger.cc379 std::string::size_type colon = value.find(':'); local
380 if (colon != std::string::npos) {
381 gJdwpOptions.host = value.substr(0, colon);
382 port_string = value.substr(colon + 1);

Completed in 69 milliseconds