Searched refs:separator (Results 1 – 8 of 8) sorted by relevance
18 "file.separator": OK48 "line.separator": OK52 "path.separator": OK
40 local separator=""43 printf -- "${separator}${dir}/${var}${suffix}.jar";44 separator=":"
238 void Split(const std::string& s, char separator, std::vector<std::string>* result) { in Split() argument242 if (*p == separator) { in Split()246 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()
540 const char* separator = ""; in PrettyMethod() local542 result += separator; in PrettyMethod()543 separator = ", "; in PrettyMethod()
1837 const size_t separator = dex_file_location.rfind('!'); in OutputDexFile() local1838 if (separator != std::string::npos) { in OutputDexFile()1839 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()
1139 const char* separator = strchr(oat_boot_class_path_checksums, ':'); in ValidateBootImageChecksum() local1140 oat_boot_class_path_checksums = (separator != nullptr) ? separator + 1u : ""; in ValidateBootImageChecksum()