Home | History | Annotate | Download | only in time

Lines Matching refs:exploded

209 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
210 // Create the system struct representing our exploded time. It will either be
213 st.wYear = exploded.year;
214 st.wMonth = exploded.month;
215 st.wDayOfWeek = exploded.day_of_week;
216 st.wDay = exploded.day_of_month;
217 st.wHour = exploded.hour;
218 st.wMinute = exploded.minute;
219 st.wSecond = exploded.second;
220 st.wMilliseconds = exploded.millisecond;
240 void Time::Explode(bool is_local, Exploded* exploded) const {
243 ZeroMemory(exploded, sizeof(*exploded));
253 // FILETIME in SYSTEMTIME (exploded).
269 ZeroMemory(exploded, sizeof(*exploded));
273 exploded->year = st.wYear;
274 exploded->month = st.wMonth;
275 exploded->day_of_week = st.wDayOfWeek;
276 exploded->day_of_month = st.wDay;
277 exploded->hour = st.wHour;
278 exploded->minute = st.wMinute;
279 exploded->second = st.wSecond;
280 exploded->millisecond = st.wMilliseconds;