Home | History | Annotate | Download | only in runtime

Lines Matching defs:milliseconds

264 // Converts a list of arguments sent to a Date member function into milliseconds, updating
265 // ms (representing milliseconds) and t (representing the rest of the date structure) appropriately.
270 double milliseconds = 0;
282 milliseconds += args.at(idx++).toInt32(exec, ok) * msPerHour;
288 milliseconds += args.at(idx++).toInt32(exec, ok) * msPerMinute;
294 milliseconds += args.at(idx++).toInt32(exec, ok) * msPerSecond;
300 // milliseconds
304 milliseconds += millis;
306 milliseconds += *ms;
308 *ms = milliseconds;
312 // Converts a list of arguments sent to a Date member function into years, months, and milliseconds, updating
313 // ms (representing milliseconds) and t (representing the rest of the date structure) appropriately.
461 // Maximum amount of space we need in buffer: 6 (max. digits in year) + 2 * 5 (2 characters each for month, day, hour, minute, second) + 4 (. + 3 digits for milliseconds)