Home
last modified time | relevance | path

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

/art/tools/jvmti-agents/chain-agents/
Dchainagents.cc56 static std::pair<std::string, std::string> Split(std::string source, char delim) { in Split() argument
57 std::string first(source.substr(0, source.find(delim))); in Split()
58 if (source.find(delim) == std::string::npos) { in Split()
61 return std::pair(first, source.substr(source.find(delim) + 1)); in Split()