Searched refs:last_pos (Results 1 – 1 of 1) sorted by relevance
315 size_t last_pos = s.find_first_not_of(',', 0); in ProcessLogComponentsFromString() local316 size_t pos = s.find(',', last_pos); in ProcessLogComponentsFromString()317 while (last_pos != std::string_view::npos) { in ProcessLogComponentsFromString()318 std::string_view component_str = s.substr(last_pos, pos - last_pos); in ProcessLogComponentsFromString()319 last_pos = s.find_first_not_of(',', pos); in ProcessLogComponentsFromString()320 pos = s.find(',', last_pos); in ProcessLogComponentsFromString()