Searched refs:comma_delimited_str (Results 1 – 1 of 1) sorted by relevance
145 bool ParseCommaDelimitedString(const grpc::string& comma_delimited_str, in ParseCommaDelimitedString() argument150 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()