Lines Matching defs:seconds
231 /// Get the elapsed time in seconds.
234 /// timer::start() and timer::stop, in seconds.
239 /// Get the elapsed time in hour:minutes:seconds:milliseconds.
246 /// @param seconds out parameter. This is se to the number of
247 /// seconds (passed the number of hours and minutes) elapsed.
250 /// (passed the number of hours, minutes and seconds) elapsed.
256 time_t& seconds,
269 seconds = (elapsed_seconds % 3600) % 60;
282 time_t hours = 0, minutes = 0, seconds = 0;
285 value(hours, minutes, seconds, msecs);
295 o << seconds << "s";