Home
last modified time | relevance | path

Searched refs:current_exploded (Results 1 – 1 of 1) sorted by relevance

/external/chromium/net/ftp/
Dftp_util.cc200 base::Time::Exploded current_exploded; in LsDateListingToTime() local
201 current_time.LocalExplode(&current_exploded); 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()