HomeSort by relevance Sort by last modified time
    Searched defs:exploded (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/crypto/
nss_util_unittest.cc 21 base::Time::Exploded exploded; local
22 prxtime.tm_year = exploded.year = 2011;
23 exploded.month = 12;
25 prxtime.tm_wday = exploded.day_of_week = 0; // Should be unusued.
26 prxtime.tm_mday = exploded.day_of_month = 10;
27 prxtime.tm_hour = exploded.hour = 2;
28 prxtime.tm_min = exploded.minute = 52;
29 prxtime.tm_sec = exploded.second = 19;
30 exploded.millisecond = 342
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_entry_conversion_unittest.cc 44 base::Time::Exploded exploded; local
45 exploded.year = 2011;
46 exploded.month = 12;
47 exploded.day_of_month = 13;
48 exploded.day_of_week = 2; // Tuesday
49 exploded.hour = 0;
50 exploded.minute = 40;
51 exploded.second = 47;
52 exploded.millisecond = 330
58 base::Time::Exploded exploded; local
117 base::Time::Exploded exploded; local
198 base::Time::Exploded exploded; local
268 base::Time::Exploded exploded; local
    [all...]
  /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/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_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};
time_util.cc 49 base::Time::Exploded exploded = {0}; local
95 if (!base::StringToInt(parts[0], &exploded.year) ||
96 !base::StringToInt(parts[1], &exploded.month) ||
97 !base::StringToInt(parts[2], &exploded.day_of_month)) {
109 if (!base::StringToInt(parts[0], &exploded.hour) ||
110 !base::StringToInt(parts[1], &exploded.minute)) {
119 if (!base::StringToInt(seconds_parts[0], &exploded.second))
125 !base::StringToInt(seconds_parts[1], &exploded.millisecond)) {
130 exploded.day_of_week = 0
    [all...]
  /external/chromium_org/chrome/browser/history/
history_publisher_win.cc 52 base::Time::Exploded exploded; local
53 time.UTCExplode(&exploded);
55 // Create the system time struct representing our exploded time.
57 system_time.wYear = exploded.year;
58 system_time.wMonth = exploded.month;
59 system_time.wDayOfWeek = exploded.day_of_week;
60 system_time.wDay = exploded.day_of_month;
61 system_time.wHour = exploded.hour;
62 system_time.wMinute = exploded.minute
    [all...]
  /external/chromium_org/ppapi/shared_impl/
time_conversion.cc 59 base::Time::Exploded exploded = { 0 }; local
60 base::Time::Exploded utc_exploded = { 0 };
61 time.LocalExplode(&exploded);
63 if (exploded.HasValidValues() && utc_exploded.HasValidValues()) {
64 base::Time adj_time = base::Time::FromUTCExploded(exploded);
  /external/chromium/chrome/browser/history/
history_publisher_win.cc 67 base::Time::Exploded exploded; local
68 time.UTCExplode(&exploded);
70 // Create the system time struct representing our exploded time.
72 system_time.wYear = exploded.year;
73 system_time.wMonth = exploded.month;
74 system_time.wDayOfWeek = exploded.day_of_week;
75 system_time.wDay = exploded.day_of_month;
76 system_time.wHour = exploded.hour;
77 system_time.wMinute = exploded.minute
    [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/net/base/
x509_cert_types.cc 106 base::Time::Exploded exploded = {0}; local
108 exploded.year = ParseIntAndAdvance(&field, year_length, &valid);
109 exploded.month = ParseIntAndAdvance(&field, 2, &valid);
110 exploded.day_of_month = ParseIntAndAdvance(&field, 2, &valid);
111 exploded.hour = ParseIntAndAdvance(&field, 2, &valid);
112 exploded.minute = ParseIntAndAdvance(&field, 2, &valid);
113 exploded.second = ParseIntAndAdvance(&field, 2, &valid);
115 exploded.year += exploded.year < 50 ? 2000 : 1900
    [all...]
  /external/chromium/base/third_party/nspr/
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/base/
time.cc 91 Exploded exploded; local
92 LocalExplode(&exploded);
93 exploded.hour = 0;
94 exploded.minute = 0;
95 exploded.second = 0;
96 exploded.millisecond = 0;
97 return FromLocalExploded(exploded);
116 // Time::Exploded -------------------------------------------------------------
122 bool Time::Exploded::HasValidValues() const
    [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)
77 Time::Exploded exploded; local
90 Time::Exploded exploded; local
98 Time::Exploded exploded; local
214 Time::Exploded exploded; local
    [all...]
  /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/base/third_party/nspr/
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/base/time/
time.cc 149 Exploded exploded; local
150 LocalExplode(&exploded);
151 exploded.hour = 0;
152 exploded.minute = 0;
153 exploded.second = 0;
154 exploded.millisecond = 0;
155 return FromLocalExploded(exploded);
179 // Time::Exploded -------------------------------------------------------------
185 bool Time::Exploded::HasValidValues() const
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
instant_ui.cc 37 base::Time::Exploded exploded; local
38 base::Time::FromInternalValue(time).UTCExplode(&exploded);
40 exploded.year, exploded.month, exploded.day_of_month,
41 exploded.hour, exploded.minute, exploded.second, exploded.millisecond)
    [all...]
  /external/chromium_org/net/cert/
x509_cert_types.cc 122 base::Time::Exploded exploded = {0}; local
124 exploded.year = ParseIntAndAdvance(&field, year_length, &valid);
125 exploded.month = ParseIntAndAdvance(&field, 2, &valid);
126 exploded.day_of_month = ParseIntAndAdvance(&field, 2, &valid);
127 exploded.hour = ParseIntAndAdvance(&field, 2, &valid);
128 exploded.minute = ParseIntAndAdvance(&field, 2, &valid);
129 exploded.second = ParseIntAndAdvance(&field, 2, &valid);
131 exploded.year += exploded.year < 50 ? 2000 : 1900
    [all...]
  /external/chromium_org/net/cookies/
cookie_util.cc 106 base::Time::Exploded exploded = {0}; local
126 exploded.month = i + 1;
148 token.c_str(), "%2u:%2u:%2u", &exploded.hour,
149 &exploded.minute, &exploded.second) == 3) {
161 exploded.day_of_month = atoi(token.c_str());
164 exploded.year = atoi(token.c_str());
183 if (exploded.year >= 69 && exploded.year <= 99
    [all...]
  /external/chromium/base/metrics/
field_trial.cc 54 base::Time::Exploded exploded; local
55 exploded.year = year;
56 exploded.month = month;
57 exploded.day_of_week = 0; // Should be unused.
58 exploded.day_of_month = day_of_month;
59 exploded.hour = 0;
60 exploded.minute = 0;
61 exploded.second = 0;
62 exploded.millisecond = 0
    [all...]
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_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_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/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);

Completed in 307 milliseconds

1 2