OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:line_parts
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/media/
webrtc_log_uploader_unittest.cc
40
// Verify the contents of the last line. The time (
line_parts
[0]) is the
43
std::vector<std::string>
line_parts
;
local
44
base::SplitString(lines[expected_lines - 1], ',', &
line_parts
);
45
EXPECT_EQ(2u,
line_parts
.size());
46
if (2u !=
line_parts
.size())
48
EXPECT_FALSE(
line_parts
[0].empty());
49
EXPECT_STREQ(kTestReportId,
line_parts
[1].c_str());
/external/chromium_org/components/test/data/autofill/merge/tools/
flatten.py
37
line_parts
= line.split(': ', 1)
38
field_type =
line_parts
[0]
39
field_value =
line_parts
[1]
Completed in 1050 milliseconds