HomeSort by relevance Sort by last modified time
    Searched refs:exploded_time (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/browser/google_apis/
time_util_unittest.cc 80 base::Time::Exploded exploded_time = {2012, 7, 0, 19, 15, 59, 13, 123}; local
81 base::Time time = base::Time::FromUTCExploded(exploded_time);
88 base::Time::Exploded exploded_time = {2012, 7, 0, 19, 15, 59, 13, 123}; local
89 base::Time time = base::Time::FromLocalExploded(exploded_time);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/picasa/
picasa_data_provider.cc 73 base::Time::Exploded exploded_time; local
74 time.LocalExplode(&exploded_time);
78 return base::StringPrintf("%04d-%02d-%02d", exploded_time.year,
79 exploded_time.month, exploded_time.day_of_month);
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip_reader.cc 55 base::Time::Exploded exploded_time = {}; // Zero-clear. local
56 exploded_time.year = raw_file_info.tmu_date.tm_year;
58 exploded_time.month = raw_file_info.tmu_date.tm_mon + 1;
59 exploded_time.day_of_month = raw_file_info.tmu_date.tm_mday;
60 exploded_time.hour = raw_file_info.tmu_date.tm_hour;
61 exploded_time.minute = raw_file_info.tmu_date.tm_min;
62 exploded_time.second = raw_file_info.tmu_date.tm_sec;
63 exploded_time.millisecond = 0;
64 if (exploded_time.HasValidValues()) {
65 last_modified_ = base::Time::FromLocalExploded(exploded_time);
    [all...]
  /external/chromium_org/third_party/zlib/google/
zip_reader.cc 55 base::Time::Exploded exploded_time = {}; // Zero-clear. local
56 exploded_time.year = raw_file_info.tmu_date.tm_year;
58 exploded_time.month = raw_file_info.tmu_date.tm_mon + 1;
59 exploded_time.day_of_month = raw_file_info.tmu_date.tm_mday;
60 exploded_time.hour = raw_file_info.tmu_date.tm_hour;
61 exploded_time.minute = raw_file_info.tmu_date.tm_min;
62 exploded_time.second = raw_file_info.tmu_date.tm_sec;
63 exploded_time.millisecond = 0;
64 if (exploded_time.HasValidValues()) {
65 last_modified_ = base::Time::FromLocalExploded(exploded_time);
    [all...]
  /external/chromium_org/chrome/browser/net/
sqlite_server_bound_cert_store_unittest.cc 70 base::Time::Exploded exploded_time; local
71 exploded_time.year = 2011;
72 exploded_time.month = 12;
73 exploded_time.day_of_week = 0; // Unused.
74 exploded_time.day_of_month = 13;
75 exploded_time.hour = 2;
76 exploded_time.minute = 23;
77 exploded_time.second = 45;
78 exploded_time.millisecond = 0;
79 return base::Time::FromUTCExploded(exploded_time);
    [all...]
  /external/chromium_org/chrome/browser/history/
visit_filter.cc 196 base::Time::Exploded exploded_time; local
199 week.LocalExplode(&exploded_time);
201 exploded_time.day_of_week - day);
235 base::Time::Exploded exploded_time; local
236 week.LocalExplode(&exploded_time);
238 GetTimesOnTheDayOfTheWeek(exploded_time.day_of_week ? 7 : 0, week,
240 GetTimesOnTheDayOfTheWeek(exploded_time.day_of_week ? 6 : -1, week,
history_backend_unittest.cc 2368 base::Time::Exploded exploded_time; local
    [all...]
  /external/chromium/chrome/browser/
keychain_mock_mac.cc 309 base::Time::Exploded exploded_time; local
310 base::Time::Now().UTCExplode(&exploded_time);
313 exploded_time.year, exploded_time.month, exploded_time.day_of_month,
314 exploded_time.hour, exploded_time.minute, exploded_time.second);
  /external/chromium_org/crypto/
mock_apple_keychain_mac.cc 427 base::Time::Exploded exploded_time; local
428 base::Time::Now().UTCExplode(&exploded_time);
431 exploded_time.year, exploded_time.month, exploded_time.day_of_month,
432 exploded_time.hour, exploded_time.minute, exploded_time.second);
  /external/chromium/chrome/browser/password_manager/
password_store_mac.cc 205 base::Time::Exploded exploded_time;
206 bzero(&exploded_time, sizeof(exploded_time));
209 &exploded_time.year, &exploded_time.month,
210 &exploded_time.day_of_month, &exploded_time.hour,
211 &exploded_time.minute, &exploded_time.second);
215 *time = base::Time::FromUTCExploded(exploded_time);
    [all...]
password_store_mac_unittest.cc 300 base::Time::Exploded exploded_time; local
301 form.date_created.UTCExplode(&exploded_time);
302 EXPECT_EQ(expected[i].creation_year, exploded_time.year)
304 EXPECT_EQ(expected[i].creation_month, exploded_time.month)
306 EXPECT_EQ(expected[i].creation_day, exploded_time.day_of_month)
308 EXPECT_EQ(expected[i].creation_hour, exploded_time.hour)
310 EXPECT_EQ(expected[i].creation_minute, exploded_time.minute)
312 EXPECT_EQ(expected[i].creation_second, exploded_time.second)
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac.cc 208 base::Time::Exploded exploded_time; local
209 bzero(&exploded_time, sizeof(exploded_time));
212 &exploded_time.year, &exploded_time.month,
213 &exploded_time.day_of_month, &exploded_time.hour,
214 &exploded_time.minute, &exploded_time.second);
218 *time = base::Time::FromUTCExploded(exploded_time);
    [all...]
password_store_mac_unittest.cc 301 base::Time::Exploded exploded_time; local
302 form.date_created.UTCExplode(&exploded_time);
303 EXPECT_EQ(expected[i].creation_year, exploded_time.year)
305 EXPECT_EQ(expected[i].creation_month, exploded_time.month)
307 EXPECT_EQ(expected[i].creation_day, exploded_time.day_of_month)
309 EXPECT_EQ(expected[i].creation_hour, exploded_time.hour)
311 EXPECT_EQ(expected[i].creation_minute, exploded_time.minute)
313 EXPECT_EQ(expected[i].creation_second, exploded_time.second)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_unittest.cc 1686 Time::Exploded exploded_time; local
    [all...]

Completed in 1576 milliseconds