Home | History | Annotate | Download | only in cookies

Lines Matching refs:exploded

106   base::Time::Exploded exploded = {0};
126 exploded.month = i + 1;
148 token.c_str(), "%2u:%2u:%2u", &exploded.hour,
149 &exploded.minute, &exploded.second) == 3) {
161 exploded.day_of_month = atoi(token.c_str());
164 exploded.year = atoi(token.c_str());
183 if (exploded.year >= 69 && exploded.year <= 99)
184 exploded.year += 1900;
185 if (exploded.year >= 0 && exploded.year <= 68)
186 exploded.year += 2000;
189 if (exploded.day_of_month >= 1 && exploded.day_of_month <= 31 &&
190 exploded.month >= 1 && exploded.month <= 12 &&
191 exploded.year >= 1601 && exploded.year <= 30827 &&
192 exploded.hour <= 23 && exploded.minute <= 59 && exploded.second <= 59) {
193 return base::Time::FromUTCExploded(exploded);
198 // NOTREACHED() << "Cookie exploded expiration failed: " << time_string;