Searched defs:separator (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dutils.cc822 bool sepOrFirst = true; // first character or just encountered a separator.
846 // The wrong separator character.
878 void Split(const std::string& s, char separator, std::vector<std::string>* result) { argument
882 if (*p == separator) {
886 while (++p != end && *p != separator) {
887 // Skip to the next occurrence of the separator.
924 std::string Join(const std::vector<StringT>& strings, char separator) { argument
931 result += separator;
938 template std::string Join<std::string>(const std::vector<std::string>& strings, char separator);
939 template std::string Join<const char*>(const std::vector<const char*>& strings, char separator);
[all...]

Completed in 66 milliseconds