HomeSort by relevance Sort by last modified time
    Searched refs:exploded (Results 26 - 50 of 62) sorted by null

12 3

  /external/chromium_org/third_party/zlib/google/
zip_reader_unittest.cc 314 base::Time::Exploded exploded = {}; // Zero-clear. local
315 current_entry_info->last_modified().LocalExplode(&exploded);
316 EXPECT_EQ(2009, exploded.year);
317 EXPECT_EQ(5, exploded.month);
318 EXPECT_EQ(29, exploded.day_of_month);
319 EXPECT_EQ(6, exploded.hour);
320 EXPECT_EQ(22, exploded.minute);
321 EXPECT_EQ(20, exploded.second);
322 EXPECT_EQ(0, exploded.millisecond)
383 base::Time::Exploded exploded = {}; \/\/ Zero-clear. local
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 96 PR_ImplodeTime(const PRExplodedTime *exploded)
102 // Create the system struct representing our exploded time.
107 st.wYear = exploded->tm_year;
108 st.wMonth = exploded->tm_month + 1;
109 st.wDayOfWeek = exploded->tm_wday;
110 st.wDay = exploded->tm_mday;
111 st.wHour = exploded->tm_hour;
112 st.wMinute = exploded->tm_min;
113 st.wSecond = exploded->tm_sec;
114 st.wMilliseconds = exploded->tm_usec/1000
    [all...]
prtime.h 173 PR_ImplodeTime(const PRExplodedTime *exploded); variable
176 * Adjust exploded time to normalize field overflows after manipulation.
188 PRExplodedTime *exploded, PRTimeParamFn params);
  /external/chromium/chrome/browser/extensions/
convert_web_app_unittest.cc 66 base::Time::Exploded exploded = {0}; local
67 exploded.year = year;
68 exploded.month = month;
69 exploded.day_of_month = day;
70 exploded.hour = hour;
71 exploded.minute = minute;
72 exploded.second = second;
73 exploded.millisecond = millisecond;
74 return base::Time::FromUTCExploded(exploded);
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 101 PR_ImplodeTime(const PRExplodedTime *exploded)
107 // Create the system struct representing our exploded time.
112 st.wYear = exploded->tm_year;
113 st.wMonth = exploded->tm_month + 1;
114 st.wDayOfWeek = exploded->tm_wday;
115 st.wDay = exploded->tm_mday;
116 st.wHour = exploded->tm_hour;
117 st.wMinute = exploded->tm_min;
118 st.wSecond = exploded->tm_sec;
119 st.wMilliseconds = exploded->tm_usec/1000
    [all...]
prtime.h 173 PR_ImplodeTime(const PRExplodedTime *exploded); variable
176 * Adjust exploded time to normalize field overflows after manipulation.
188 PRExplodedTime *exploded, PRTimeParamFn params);
  /external/chromium_org/chrome/browser/extensions/
convert_web_app_unittest.cc 71 base::Time::Exploded exploded = {0}; local
72 exploded.year = year;
73 exploded.month = month;
74 exploded.day_of_month = day;
75 exploded.hour = hour;
76 exploded.minute = minute;
77 exploded.second = second;
78 exploded.millisecond = millisecond;
79 return base::Time::FromUTCExploded(exploded);
    [all...]
  /external/chromium/chrome/browser/diagnostics/
diagnostics_main.cc 252 base::Time::Exploded exploded = {0}; local
253 base::Time::Now().UTCExplode(&exploded);
255 exploded.year, exploded.month, exploded.day_of_month,
256 exploded.hour, exploded.minute, exploded.second);
  /external/chromium/base/
time.h 205 // Represents an exploded time that can be formatted nicely. This is kind of
208 struct BASE_API Exploded {
221 // Exploded value can be successfully converted to a Time value.
293 // Converts an exploded structure representing either the local time or UTC
295 static Time FromUTCExploded(const Exploded& exploded) {
296 return FromExploded(false, exploded);
298 static Time FromLocalExploded(const Exploded& exploded) {
299 return FromExploded(true, exploded);
    [all...]
  /external/chromium_org/base/time/
time.h 223 // Represents an exploded time that can be formatted nicely. This is kind of
226 struct BASE_EXPORT Exploded {
239 // Exploded value can be successfully converted to a Time value.
346 // Converts an exploded structure representing either the local time or UTC
348 static Time FromUTCExploded(const Exploded& exploded) {
349 return FromExploded(false, exploded);
351 static Time FromLocalExploded(const Exploded& exploded) {
352 return FromExploded(true, exploded);
    [all...]
  /external/chromium_org/base/metrics/
field_trial.cc 28 Time::Exploded exploded; local
29 exploded.year = year;
30 exploded.month = month;
31 exploded.day_of_week = 0; // Should be unused.
32 exploded.day_of_month = day_of_month;
33 exploded.hour = 0;
34 exploded.minute = 0;
35 exploded.second = 0;
36 exploded.millisecond = 0
218 Time::Exploded exploded; local
    [all...]
  /external/chromium_org/chrome/browser/nacl_host/
pnacl_translation_cache.cc 427 base::Time::Exploded exploded; local
428 info.last_modified.UTCExplode(&exploded);
429 if (info.last_modified.is_null() || !exploded.HasValidValues()) {
430 memset(&exploded, 0, sizeof(exploded));
432 retval += "modified:" + IntToString(exploded.year) + ":" +
433 IntToString(exploded.month) + ":" +
434 IntToString(exploded.day_of_month) + ":" +
435 IntToString(exploded.hour) + ":" + IntToString(exploded.minute)
    [all...]
  /external/chromium/chrome/browser/history/
text_database_manager_unittest.cc 67 Time::Exploded exploded; local
68 memset(&exploded, 0, sizeof(Time::Exploded));
71 exploded.year = 2008;
72 exploded.month = 1;
73 exploded.day_of_month = 3;
77 visit_row.visit_time = Time::FromUTCExploded(exploded);
89 exploded.day_of_month++;
91 visit_row.visit_time = Time::FromUTCExploded(exploded);
    [all...]
text_database_manager.cc 100 Time::Exploded exploded; local
101 time.UTCExplode(&exploded);
105 return exploded.year * 100 + exploded.month;
110 Time::Exploded exploded; local
111 memset(&exploded, 0, sizeof(Time::Exploded));
112 exploded.year = id / 100
    [all...]
  /external/chromium/chrome/browser/ui/views/
about_ipc_dialog.cc 308 base::Time::Exploded exploded; local
309 sent.LocalExplode(&exploded);
310 if (exploded.hour > 12)
311 exploded.hour -= 12;
314 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
  /external/chromium_org/chrome/browser/google_apis/
time_util_unittest.cc 23 // Creates local time objects from exploded structure.
24 base::Time::Exploded exploded = {2013, 1, 0, 15, 17, 11, 35, 374}; local
25 base::Time local_time = base::Time::FromLocalExploded(exploded);
60 base::Time::Exploded target_time1 = {2005, 1, 0, 7, 8, 2, 0, 0};
67 base::Time::Exploded target_time2 = {2005, 8, 0, 9, 17, 57, 0, 0};
73 base::Time::Exploded target_time3 = {2005, 1, 0, 7, 8, 2, 0, 123};
80 base::Time::Exploded exploded_time = {2012, 7, 0, 19, 15, 59, 13, 123};
88 base::Time::Exploded exploded_time = {2012, 7, 0, 19, 15, 59, 13, 123};
  /external/chromium_org/chrome/browser/ui/views/
about_ipc_dialog.cc 294 base::Time::Exploded exploded; local
295 sent.LocalExplode(&exploded);
296 if (exploded.hour > 12)
297 exploded.hour -= 12;
300 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
  /external/chromium/crypto/
nss_util.cc 703 base::Time::Exploded exploded; local
704 exploded.year = prxtime.tm_year;
705 exploded.month = prxtime.tm_month + 1;
706 exploded.day_of_week = prxtime.tm_wday;
707 exploded.day_of_month = prxtime.tm_mday;
708 exploded.hour = prxtime.tm_hour;
709 exploded.minute = prxtime.tm_min;
710 exploded.second = prxtime.tm_sec;
711 exploded.millisecond = prxtime.tm_usec / 1000
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query.cc 110 base::Time::Exploded exploded; local
111 t.UTCExplode(&exploded);
113 "%04d-%02d-%02dT%02d:%02d:%02d.%03dZ", exploded.year, exploded.month,
114 exploded.day_of_month, exploded.hour, exploded.minute, exploded.second,
115 exploded.millisecond)
    [all...]
  /external/chromium_org/net/cert/
x509_certificate_win.cc 32 void ExplodedTimeToSystemTime(const base::Time::Exploded& exploded,
34 system_time->wYear = exploded.year;
35 system_time->wMonth = exploded.month;
36 system_time->wDayOfWeek = exploded.day_of_week;
37 system_time->wDay = exploded.day_of_month;
38 system_time->wHour = exploded.hour;
39 system_time->wMinute = exploded.minute;
40 system_time->wSecond = exploded.second;
41 system_time->wMilliseconds = exploded.millisecond
    [all...]
  /external/chromium/base/metrics/
field_trial_unittest.cc 19 Time::Exploded exploded; local
22 next_year_time.LocalExplode(&exploded);
23 next_year_ = exploded.year;
26 last_year_time.LocalExplode(&exploded);
27 last_year_ = exploded.year;
  /external/chromium/chrome/browser/chromeos/status/
clock_menu_button.cc 56 base::Time::Exploded exploded; local
57 now.LocalExplode(&exploded);
61 int seconds_left = 60 - exploded.second;
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_models.cc 167 base::Time::Exploded exploded; local
168 time.LocalExplode(&exploded);
169 this_year_ = exploded.year;
  /external/chromium/net/base/
x509_certificate_win.cc 151 void ExplodedTimeToSystemTime(const base::Time::Exploded& exploded,
153 system_time->wYear = exploded.year;
154 system_time->wMonth = exploded.month;
155 system_time->wDayOfWeek = exploded.day_of_week;
156 system_time->wDay = exploded.day_of_month;
157 system_time->wHour = exploded.hour;
158 system_time->wMinute = exploded.minute;
159 system_time->wSecond = exploded.second;
160 system_time->wMilliseconds = exploded.millisecond
589 base::Time::Exploded exploded; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 210 void normalizeMonths(base::Time::Exploded* exploded) {
212 while (exploded->month < 1) {
213 exploded->month += 12;
214 exploded->year--;
901 base::Time::Exploded exploded; local
    [all...]

Completed in 1548 milliseconds

12 3