Home | History | Annotate | Download | only in base

Lines Matching full:year

420 //  - If the year is <= 2 digits, it must occur after the day of month.
495 exploded.year = atoi(token.c_str());
513 // Normalize the year to expand abbreviated years to the full year.
514 if (exploded.year >= 69 && exploded.year <= 99)
515 exploded.year += 1900;
516 if (exploded.year >= 0 && exploded.year <= 68)
517 exploded.year += 2000;
522 exploded.year >= 1601 && exploded.year <= 30827 &&