Lines Matching refs:delim
216 PROTOBUF_EXPORT void SplitStringUsing(StringPiece full, const char* delim,
227 PROTOBUF_EXPORT void SplitStringAllowEmpty(StringPiece full, const char* delim,
234 inline std::vector<string> Split(StringPiece full, const char* delim,
238 SplitStringUsing(full, delim, &result);
240 SplitStringAllowEmpty(full, delim, &result);
248 // the C-string "delim" as a separator between components. There are two
254 const char* delim, string* result);
257 const char* delim) {
259 JoinStrings(components, delim, &result);
765 // the C-string "delim" as a separator between components.
769 const char* delim, string* result) {
772 result->append(delim);
780 const char* delim) {
782 Join(components.begin(), components.end(), delim, &result);