Home | History | Annotate | Download | only in base

Lines Matching refs:Exploded

166 Time Time::FromExploded(bool is_local, const Exploded& exploded) {
167 // Create the system struct representing our exploded time. It will either be
170 st.wYear = exploded.year;
171 st.wMonth = exploded.month;
172 st.wDayOfWeek = exploded.day_of_week;
173 st.wDay = exploded.day_of_month;
174 st.wHour = exploded.hour;
175 st.wMinute = exploded.minute;
176 st.wSecond = exploded.second;
177 st.wMilliseconds = exploded.millisecond;
195 void Time::Explode(bool is_local, Exploded* exploded) const {
208 // FILETIME in SYSTEMTIME (exploded).
212 ZeroMemory(exploded, sizeof(exploded));
216 exploded->year = st.wYear;
217 exploded->month = st.wMonth;
218 exploded->day_of_week = st.wDayOfWeek;
219 exploded->day_of_month = st.wDay;
220 exploded->hour = st.wHour;
221 exploded->minute = st.wMinute;
222 exploded->second = st.wSecond;
223 exploded->millisecond = st.wMilliseconds;