Lines Matching refs:time_exploded
162 base::Time::Exploded time_exploded = { 0 }; in LsDateListingToTime() local
164 if (!AbbreviatedMonthToNumber(month, &time_exploded.month)) in LsDateListingToTime()
167 if (!base::StringToInt(day, &time_exploded.day_of_month)) in LsDateListingToTime()
169 if (time_exploded.day_of_month > 31) in LsDateListingToTime()
172 if (!base::StringToInt(rest, &time_exploded.year)) { in LsDateListingToTime()
177 &time_exploded.hour)) in LsDateListingToTime()
182 &time_exploded.minute)) in LsDateListingToTime()
188 &time_exploded.hour)) in LsDateListingToTime()
193 &time_exploded.minute)) in LsDateListingToTime()
205 if (time_exploded.month > current_exploded.month || in LsDateListingToTime()
206 (time_exploded.month == current_exploded.month && in LsDateListingToTime()
207 time_exploded.day_of_month > current_exploded.day_of_month)) { in LsDateListingToTime()
208 time_exploded.year = current_exploded.year - 1; in LsDateListingToTime()
210 time_exploded.year = current_exploded.year; in LsDateListingToTime()
215 *result = base::Time::FromLocalExploded(time_exploded); in LsDateListingToTime()