Lines Matching refs:result
67 std::vector<OutputStringType> result;
69 return result;
90 result.emplace_back(piece);
92 return result;
97 StringPairs* result) {
99 // below code will copy the strings directly into the result pair.
100 result->resize(result->size() + 1);
101 auto& result_pair = result->back();
128 std::vector<OutputStringType>* result) {
132 result->clear();
144 result->emplace_back(term);
226 std::vector<std::u16string> result;
227 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result);
228 return result;
235 std::vector<std::string> result;
236 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result);
237 return result;
245 std::vector<std::u16string_view> result;
246 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result);
247 return result;
255 std::vector<std::string_view> result;
256 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result);
257 return result;