Searched refs:delim (Results 1 – 1 of 1) sorted by relevance
56 static std::pair<std::string, std::string> Split(std::string source, char delim) { in Split() argument57 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()