Lines Matching full:millis
48 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status);
75 char *millis = NULL;
123 millis = argv[optInd];
161 when = getWhen(millis, seconds, format, style, parse, tz, &status);
163 format = FORMAT_MILLIS; /* output in millis */
189 puts(" (Special formats: \"%\" alone is Millis since 1970, \"%%\" alone is Seconds since 1970)");
191 puts(" -R <millis> Use <millis> as the time (Epoch 1970) rather than now.");
192 puts(" -P <string> Parse <string> as the time, output in millis format.");
291 static UDate getWhen(const char *millis, const char *seconds, const char *format,
299 if(millis != NULL) {
300 sscanf(millis, "%lf", &when);