Searched refs:time_exploded (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/ftp/
H A Dftp_util_unittest.cc176 base::Time::Exploded time_exploded; local
177 time.LocalExplode(&time_exploded);
178 EXPECT_EQ(kTestCases[i].expected_year, time_exploded.year);
179 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
180 EXPECT_EQ(kTestCases[i].expected_day_of_month, time_exploded.day_of_month);
181 EXPECT_EQ(kTestCases[i].expected_hour, time_exploded.hour);
182 EXPECT_EQ(kTestCases[i].expected_minute, time_exploded.minute);
183 EXPECT_EQ(0, time_exploded.second);
184 EXPECT_EQ(0, time_exploded.millisecond);
217 base::Time::Exploded time_exploded; local
[all...]
H A Dftp_util.cc231 base::Time::Exploded time_exploded = { 0 }; local
233 if (!AbbreviatedMonthToNumber(month, &time_exploded.month)) {
238 &time_exploded.month)) {
243 if (!base::StringToInt(day, &time_exploded.day_of_month))
245 if (time_exploded.day_of_month > 31)
248 if (!base::StringToInt(rest, &time_exploded.year)) {
262 &time_exploded.hour)) {
267 &time_exploded.minute)) {
277 if (time_exploded.month > current_exploded.month ||
278 (time_exploded
295 base::Time::Exploded time_exploded = { 0 }; local
[all...]
H A Dftp_directory_listing_parser_unittest.h49 base::Time::Exploded time_exploded; local
50 entry.last_modified.LocalExplode(&time_exploded);
53 EXPECT_EQ(test_case.year, time_exploded.year);
54 EXPECT_EQ(test_case.month, time_exploded.month);
55 EXPECT_EQ(test_case.day_of_month, time_exploded.day_of_month);
56 EXPECT_EQ(test_case.hour, time_exploded.hour);
57 EXPECT_EQ(test_case.minute, time_exploded.minute);
H A Dftp_directory_listing_parser_unittest.cc97 base::Time::Exploded time_exploded; local
98 entry.last_modified.LocalExplode(&time_exploded);
99 EXPECT_EQ(year, time_exploded.year);
100 EXPECT_EQ(month, time_exploded.month);
101 EXPECT_EQ(day_of_month, time_exploded.day_of_month);
102 EXPECT_EQ(hour, time_exploded.hour);
103 EXPECT_EQ(minute, time_exploded.minute);
H A Dftp_directory_listing_parser_ls.cc22 base::Time::Exploded time_exploded = { 0 }; local
29 if (!base::StringToInt(date_parts[0], &time_exploded.year))
31 if (!base::StringToInt(date_parts[1], &time_exploded.month))
33 if (!base::StringToInt(date_parts[2], &time_exploded.day_of_month))
44 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
46 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
48 if (!time_exploded.HasValidValues())
52 *result = base::Time::FromLocalExploded(time_exploded);
H A Dftp_directory_listing_parser_vms.cc156 base::Time::Exploded time_exploded = { 0 }; local
163 if (!base::StringToInt(date_parts[0], &time_exploded.day_of_month))
166 &time_exploded.month))
168 if (!base::StringToInt(date_parts[2], &time_exploded.year))
184 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
186 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
190 *time = base::Time::FromLocalExploded(time_exploded);
/external/chromium_org/chrome/test/logging/win/
H A Dlog_file_printer.cc139 base::Time::Exploded time_exploded = {}; local
142 base::Time::FromFileTime(event_time).LocalExplode(&time_exploded);
145 << std::setw(2) << time_exploded.month
146 << std::setw(2) << time_exploded.day_of_month
148 << std::setw(2) << time_exploded.hour
149 << std::setw(2) << time_exploded.minute
150 << std::setw(2) << time_exploded.second
152 << std::setw(3) << time_exploded.millisecond;

Completed in 991 milliseconds