Searched refs:line_parts (Results 1 – 2 of 2) sorted by relevance
43 std::vector<std::string> line_parts; in VerifyNumberOfLinesAndContentsOfLastLine() local44 base::SplitString(lines[expected_lines - 1], ',', &line_parts); in VerifyNumberOfLinesAndContentsOfLastLine()45 EXPECT_EQ(2u, line_parts.size()); in VerifyNumberOfLinesAndContentsOfLastLine()46 if (2u != line_parts.size()) in VerifyNumberOfLinesAndContentsOfLastLine()48 EXPECT_FALSE(line_parts[0].empty()); in VerifyNumberOfLinesAndContentsOfLastLine()49 EXPECT_STREQ(kTestReportId, line_parts[1].c_str()); in VerifyNumberOfLinesAndContentsOfLastLine()
37 line_parts = line.split(': ', 1)38 field_type = line_parts[0]39 field_value = line_parts[1]