Home | History | Annotate | Download | only in base

Lines Matching full:exploded

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;
591 // Create the system time structs representing our exploded times.
592 not_before.UTCExplode(&exploded);
594 ExplodedTimeToSystemTime(exploded, &start_time);
595 not_after.UTCExplode(&exploded);
597 ExplodedTimeToSystemTime(exploded, &end_time);