Home | History | Annotate | Download | only in ftp

Lines Matching refs:time_exploded

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