Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 7 of 7) sorted by relevance

/art/test/922-properties/
Dexpected.txt18 "file.separator": OK
48 "line.separator": OK
52 "path.separator": OK
/art/tools/
Drun-jdwp-tests.sh50 local separator=""
53 printf -- "${separator}${dir}/${var}${suffix}.jar";
54 separator=":"
/art/libartbase/base/
Dutils.cc214 void Split(const std::string& s, char separator, std::vector<std::string>* result) { in Split() argument
218 if (*p == separator) { in Split()
222 while (++p != end && *p != separator) { in Split()
Dutils.h47 void Split(const std::string& s, char separator, std::vector<std::string>* result);
/art/cmdline/
Dtoken_range.h377 std::string Join(char separator) const { in Join()
379 return android::base::Join(tmp, separator); in Join()
/art/libdexfile/dex/
Ddex_file.cc539 const char* separator = ""; in PrettyMethod() local
541 result += separator; in PrettyMethod()
542 separator = ", "; in PrettyMethod()
/art/dexlayout/
Ddexlayout.cc1836 const size_t separator = dex_file_location.rfind('!'); in OutputDexFile() local
1837 if (separator != std::string::npos) { in OutputDexFile()
1838 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()