Lines Matching defs:result
213 // to 'result'. If there are consecutive delimiters, this function skips
220 // as a nul-terminated c string. Append the components to 'result'.
228 std::vector<string>* result);
236 std::vector<string> result;
238 SplitStringUsing(full, delim, &result);
240 SplitStringAllowEmpty(full, delim, &result);
242 return result;
254 const char* delim, string* result);
258 string result;
259 JoinStrings(components, delim, &result);
260 return result;
769 const char* delim, string* result) {
772 result->append(delim);
774 StrAppend(result, *it);
781 string result;
782 Join(components.begin(), components.end(), delim, &result);
783 return result;