Lines Matching refs:out_result
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()
276 *out_result++ = Str(p); in Split()
280 template void Split(const std::string& s, char separator, size_t len, std::string* out_result);
284 std::string_view* out_result);