Home | History | Annotate | Download | only in cookies

Lines Matching refs:exploded

107   base::Time::Exploded exploded = {0};
127 exploded.month = i + 1;
149 token.c_str(), "%2u:%2u:%2u", &exploded.hour,
150 &exploded.minute, &exploded.second) == 3) {
162 exploded.day_of_month = atoi(token.c_str());
165 exploded.year = atoi(token.c_str());
184 if (exploded.year >= 69 && exploded.year <= 99)
185 exploded.year += 1900;
186 if (exploded.year >= 0 && exploded.year <= 68)
187 exploded.year += 2000;
190 if (exploded.day_of_month >= 1 && exploded.day_of_month <= 31 &&
191 exploded.month >= 1 && exploded.month <= 12 &&
192 exploded.year >= 1601 && exploded.year <= 30827 &&
193 exploded.hour <= 23 && exploded.minute <= 59 && exploded.second <= 59) {
194 return base::Time::FromUTCExploded(exploded);
199 // NOTREACHED() << "Cookie exploded expiration failed: " << time_string;