Home | History | Annotate | Download | only in runtime

Lines Matching defs:years

218     // We do not allow strftime to generate dates with 2-digits years,
219 // both to avoid ambiguity, and a crash in strncpy, for years that
340 // Converts a list of arguments sent to a Date member function into years, months, and milliseconds, updating
343 // Format of member function: f([years,] [months,] [days])
354 // years
356 double years = exec->argument(idx++).toIntegerPreserveNaN(exec);
357 ok = isfinite(years);
358 t->year = toInt32(years - 1900);