Home
last modified time | relevance | path

Searched refs:out_result (Results 1 – 2 of 2) sorted by relevance

/art/libartbase/base/
Dutils.cc236 void Split(const StrIn& s, char separator, std::vector<Str>* out_result) { in Split() argument
242 out_result->push_back(Str(p)); in Split()
246 template void Split(const char *const& s, char separator, std::vector<std::string>* out_result);
247 template void Split(const std::string& s, char separator, std::vector<std::string>* out_result);
248 template void Split(const char *const& s, char separator, std::vector<std::string_view>* out_result
251 std::vector<std::string_view>* out_result);
254 void Split(const Str& s, char separator, size_t len, Str* out_result) { in Split() argument
255 Str* last = out_result + len; in Split()
261 if (out_result == last) { in Split()
264 *out_result++ = Str(p); in Split()
[all …]
Dutils.h48 void Split(const StrIn& s, char separator, std::vector<Str>* out_result);
51 void Split(const Str& s, char separator, size_t len, Str* out_result);
54 void Split(const StrIn& s, char separator, std::array<Str, kLen>* out_result) { in Split() argument
55 Split<Str>(Str(s), separator, kLen, &((*out_result)[0])); in Split()