Searched refs:separator (Results 1 – 7 of 7) sorted by relevance
18 "file.separator": OK48 "line.separator": OK52 "path.separator": OK
50 local separator=""53 printf -- "${separator}${dir}/${var}${suffix}.jar";54 separator=":"
214 void Split(const std::string& s, char separator, std::vector<std::string>* result) { in Split() argument218 if (*p == separator) { in Split()222 while (++p != end && *p != separator) { in Split()
47 void Split(const std::string& s, char separator, std::vector<std::string>* result);
377 std::string Join(char separator) const { in Join()379 return android::base::Join(tmp, separator); in Join()
539 const char* separator = ""; in PrettyMethod() local541 result += separator; in PrettyMethod()542 separator = ", "; in PrettyMethod()
1836 const size_t separator = dex_file_location.rfind('!'); in OutputDexFile() local1837 if (separator != std::string::npos) { in OutputDexFile()1838 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()