Home
last modified time | relevance | path

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

/art/tools/ahat/src/main/com/android/ahat/proguard/
DProguardMap.java222 int sep = line.indexOf(" -> "); in readFromReader() local
223 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()
/art/cmdline/
Dtoken_range.h121 for (char sep : separators) { in Split() local
122 if (c == sep) { in Split()
130 new_token_list.push_back(std::string() + sep); in Split()
/art/tools/veridex/
Dveridex.cc123 static std::vector<std::string> Split(const std::string& str, char sep) { in Split() argument
127 while (std::getline(iss, tmp, sep)) { in Split()