Searched refs:out_result (Results 1 – 2 of 2) sorted by relevance
/art/libartbase/base/ |
D | utils.cc | 245 void Split(const StrIn& s, char separator, std::vector<Str>* out_result) { in Split() argument 251 out_result->push_back(Str(p)); in Split() 255 template void Split(const char *const& s, char separator, std::vector<std::string>* out_result); 256 template void Split(const std::string& s, char separator, std::vector<std::string>* out_result); 257 template void Split(const char *const& s, char separator, std::vector<std::string_view>* out_result… 260 std::vector<std::string_view>* out_result); 263 std::vector<std::string>* out_result); 266 void Split(const Str& s, char separator, size_t len, Str* out_result) { in Split() argument 267 Str* last = out_result + len; in Split() 273 if (out_result == last) { in Split() [all …]
|
D | utils.h | 52 void Split(const StrIn& s, char separator, std::vector<Str>* out_result); 55 void Split(const Str& s, char separator, size_t len, Str* out_result); 58 void Split(const StrIn& s, char separator, std::array<Str, kLen>* out_result) { in Split() argument 59 Split<Str>(Str(s), separator, kLen, &((*out_result)[0])); in Split()
|