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

  /external/chromium/net/ftp/
ftp_directory_listing_parser_mlsd_unittest.cc 15 base::Time::Exploded now_exploded;
ftp_directory_listing_parser_netware_unittest.cc 15 base::Time::Exploded now_exploded;
ftp_util_unittest.cc 105 base::Time::Exploded now_exploded;
141 base::Time::Exploded time_exploded;
ftp_directory_listing_parser_ls_unittest.cc 15 base::Time::Exploded now_exploded;
ftp_directory_listing_parser_unittest.h 41 base::Time::Exploded time_exploded;
ftp_directory_listing_parser_windows_unittest.cc 15 base::Time::Exploded now_exploded;
ftp_directory_listing_buffer_unittest.cc 89 base::Time::Exploded now_exploded;
116 base::Time::Exploded time_exploded;
ftp_util.cc 150 base::Time::Exploded time_exploded = { 0 };
170 base::Time::Exploded now_exploded;
ftp_directory_listing_parser_windows.cc 18 base::Time::Exploded time_exploded = { 0 };
ftp_directory_listing_parser_mlsd.cc 21 base::Time::Exploded time_exploded = { 0 };
ftp_directory_listing_parser_vms.cc 121 base::Time::Exploded time_exploded = { 0 };
  /external/chromium/base/
time.h 198 // Represents an exploded time that can be formatted nicely. This is kind of
201 struct Exploded {
254 // Converts an exploded structure representing either the local time or UTC
256 static Time FromUTCExploded(const Exploded& exploded) {
257 return FromExploded(false, exploded);
259 static Time FromLocalExploded(const Exploded& exploded) {
260 return FromExploded(true, exploded);
286 // Fills the given exploded structure with either the local time or UTC fro
    [all...]
time_unittest.cc 18 // C library time and exploded time.
29 Time::Exploded exploded; local
30 our_time_1.LocalExplode(&exploded);
33 EXPECT_EQ(tms.tm_year + 1900, exploded.year);
34 EXPECT_EQ(tms.tm_mon + 1, exploded.month);
35 EXPECT_EQ(tms.tm_mday, exploded.day_of_month);
36 EXPECT_EQ(tms.tm_hour, exploded.hour);
37 EXPECT_EQ(tms.tm_min, exploded.minute);
38 EXPECT_EQ(tms.tm_sec, exploded.second)
64 Time::Exploded exploded; local
77 Time::Exploded exploded; local
85 Time::Exploded exploded; local
170 Time::Exploded exploded; local
    [all...]
time_mac.cc 63 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
65 date.second = exploded.second +
66 exploded.millisecond / static_cast<double>(kMillisecondsPerSecond);
67 date.minute = exploded.minute;
68 date.hour = exploded.hour;
69 date.day = exploded.day_of_month;
70 date.month = exploded.month;
71 date.year = exploded.year;
81 void Time::Explode(bool is_local, Exploded* exploded) const
    [all...]
time_posix.cc 64 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
66 timestruct.tm_sec = exploded.second;
67 timestruct.tm_min = exploded.minute;
68 timestruct.tm_hour = exploded.hour;
69 timestruct.tm_mday = exploded.day_of_month;
70 timestruct.tm_mon = exploded.month - 1;
71 timestruct.tm_year = exploded.year - 1900;
72 timestruct.tm_wday = exploded.day_of_week; // mktime/timegm ignore this
90 (exploded.year < 1969 || exploded.year > 1970))
    [all...]
time.cc 83 Exploded exploded; local
84 LocalExplode(&exploded);
85 exploded.hour = 0;
86 exploded.minute = 0;
87 exploded.second = 0;
88 exploded.millisecond = 0;
89 return FromLocalExploded(exploded);
nss_util.cc 180 base::Time::Exploded exploded; local
181 exploded.year = prxtime.tm_year;
182 exploded.month = prxtime.tm_month + 1;
183 exploded.day_of_week = prxtime.tm_wday;
184 exploded.day_of_month = prxtime.tm_mday;
185 exploded.hour = prxtime.tm_hour;
186 exploded.minute = prxtime.tm_min;
187 exploded.second = prxtime.tm_sec;
188 exploded.millisecond = prxtime.tm_usec / 1000
    [all...]
time_win.cc 166 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
167 // Create the system struct representing our exploded time. It will either be
170 st.wYear = exploded.year;
171 st.wMonth = exploded.month;
172 st.wDayOfWeek = exploded.day_of_week;
173 st.wDay = exploded.day_of_month;
174 st.wHour = exploded.hour;
175 st.wMinute = exploded.minute;
176 st.wSecond = exploded.second
    [all...]
  /external/chromium/net/disk_cache/
eviction.cc 184 Time::Exploded old = {0};
  /external/chromium/net/base/
x509_certificate_mac.cc 343 Time::Exploded exploded; local
344 exploded.year = time.tm_year + 1900;
345 exploded.month = time.tm_mon + 1;
346 exploded.day_of_week = time.tm_wday;
347 exploded.day_of_month = time.tm_mday;
348 exploded.hour = time.tm_hour;
349 exploded.minute = time.tm_min;
350 exploded.second = time.tm_sec;
351 exploded.millisecond = 0
    [all...]
cookie_monster.cc 166 Time::Exploded exploded = {0}; local
186 exploded.month = i + 1;
208 token.c_str(), "%2u:%2u:%2u", &exploded.hour,
209 &exploded.minute, &exploded.second) == 3) {
221 exploded.day_of_month = atoi(token.c_str());
224 exploded.year = atoi(token.c_str());
243 if (exploded.year >= 69 && exploded.year <= 99
    [all...]

Completed in 159 milliseconds