Searched refs:sep (Results 1 – 3 of 3) sorted by relevance
222 int sep = line.indexOf(" -> "); in readFromReader() local223 if (sep == -1 || sep + 5 >= line.length()) { in readFromReader()226 String clearClassName = line.substring(0, sep); in readFromReader()227 String obfuscatedClassName = line.substring(sep + 4, line.length() - 1); in readFromReader()239 sep = trimmed.indexOf(" -> "); in readFromReader()240 if (ws == -1 || sep == -1) { in readFromReader()245 String clearName = trimmed.substring(ws + 1, sep); in readFromReader()246 String obfuscatedName = trimmed.substring(sep + 4, trimmed.length()); in readFromReader()
121 for (char sep : separators) { in Split() local122 if (c == sep) { in Split()130 new_token_list.push_back(std::string() + sep); in Split()
114 static std::vector<std::string> Split(const std::string& str, char sep) { in Split() argument118 while (std::getline(iss, tmp, sep)) { in Split()