Lines Matching refs:seconds
52 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status);
78 char *seconds = NULL;
122 seconds = argv[optInd];
165 when = getWhen(millis, seconds, format, style, parse, tz, &status);
193 puts(" (Special formats: \"%\" alone is Millis since 1970, \"%%\" alone is Seconds since 1970)");
194 puts(" -r <seconds> Use <seconds> as the time (Epoch 1970) rather than now.");
295 static UDate getWhen(const char *millis, const char *seconds, const char *format,
306 } else if(seconds != NULL) {
307 sscanf(seconds, "%lf", &when);