Home
last modified time | relevance | path

Searched refs:comma_delimited_str (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc/test/cpp/interop/
Dstress_test.cc145 bool ParseCommaDelimitedString(const grpc::string& comma_delimited_str, in ParseCommaDelimitedString() argument
150 while ((epos = comma_delimited_str.find(',', bpos)) != grpc::string::npos) { in ParseCommaDelimitedString()
151 tokens.emplace_back(comma_delimited_str.substr(bpos, epos - bpos)); in ParseCommaDelimitedString()
155 tokens.emplace_back(comma_delimited_str.substr(bpos)); // Last token in ParseCommaDelimitedString()