Home
last modified time | relevance | path

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

/external/chromium_org/chrome/browser/media/
Dwebrtc_log_uploader_unittest.cc43 std::vector<std::string> line_parts; in VerifyNumberOfLinesAndContentsOfLastLine() local
44 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()
/external/chromium_org/components/test/data/autofill/merge/tools/
Dflatten.py37 line_parts = line.split(': ', 1)
38 field_type = line_parts[0]
39 field_value = line_parts[1]