Home | History | Annotate | Download | only in base

Lines Matching refs:exploded

181 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
182 // Create the system struct representing our exploded time. It will either be
185 st.wYear = exploded.year;
186 st.wMonth = exploded.month;
187 st.wDayOfWeek = exploded.day_of_week;
188 st.wDay = exploded.day_of_month;
189 st.wHour = exploded.hour;
190 st.wMinute = exploded.minute;
191 st.wSecond = exploded.second;
192 st.wMilliseconds = exploded.millisecond;
210 void Time::Explode(bool is_local, Exploded* exploded) const {
223 // FILETIME in SYSTEMTIME (exploded).
227 ZeroMemory(exploded, sizeof(exploded));
231 exploded->year = st.wYear;
232 exploded->month = st.wMonth;
233 exploded->day_of_week = st.wDayOfWeek;
234 exploded->day_of_month = st.wDay;
235 exploded->hour = st.wHour;
236 exploded->minute = st.wMinute;
237 exploded->second = st.wSecond;
238 exploded->millisecond = st.wMilliseconds;