/third_party/curl/lib/ |
H A D | getinfo.c | 202 char *timestr = getenv("CURL_TIME"); in getinfo_long() local 203 if(timestr) { in getinfo_long() 204 unsigned long val = strtol(timestr, NULL, 10); in getinfo_long() 214 timestr = getenv("CURL_DEBUG_SIZE"); in getinfo_long() 215 if(timestr) { in getinfo_long() 216 unsigned long val = strtol(timestr, NULL, 10); in getinfo_long() 350 char *timestr = getenv("CURL_TIME"); in getinfo_offt() local 351 if(timestr) { in getinfo_offt() 352 unsigned long val = strtol(timestr, NULL, 10); in getinfo_offt() 439 char *timestr in getinfo_double() local [all...] |
H A D | altsvc.c | 470 char *timestr = getenv("CURL_TIME"); in altsvc_debugtime() local 472 if(timestr) { in altsvc_debugtime() 473 unsigned long val = strtol(timestr, NULL, 10); in altsvc_debugtime()
|
H A D | hsts.c | 63 char *timestr = getenv("CURL_TIME"); in hsts_debugtime() local 65 if(timestr) { in hsts_debugtime() 67 (void)curlx_strtoofft(timestr, NULL, 10, &val); in hsts_debugtime()
|
/third_party/curl/tests/libtest/ |
H A D | testtrace.c | 96 char *timestr; in libtest_debug_cb() local 102 timestr = &timebuf[0]; in libtest_debug_cb() 119 fprintf(stderr, "%s== Info: %s", timestr, (char *)data); in libtest_debug_cb()
|
/third_party/ffmpeg/libavutil/ |
H A D | parseutils.h | 115 * Parse timestr and return in *time a corresponding number of 119 * to the string in timestr. If the string represents a duration, it 122 * January, 1970 up to the time of the parsed date. If timestr cannot 125 * @param timestr a string representing a date or a duration. 141 * @param duration flag which tells how to interpret timestr, if not 142 * zero timestr is interpreted as a duration, otherwise as a date 146 int av_parse_time(int64_t *timeval, const char *timestr, int duration);
|
H A D | parseutils.c | 589 int av_parse_time(int64_t *timeval, const char *timestr, int duration) in av_parse_time() argument 611 p = timestr; in av_parse_time() 618 if (!av_strcasecmp(timestr, "now")) { in av_parse_time() 651 /* parse timestr as a duration */ in av_parse_time() 656 /* parse timestr as HH:MM:SS */ in av_parse_time() 659 /* parse timestr as MM:SS */ in av_parse_time() 665 /* parse timestr as S+ */ in av_parse_time()
|
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | headergen2.c | 351 char timestr[64]; in print_file_info_() local 352 strftime(timestr, sizeof(timestr), "%Y-%m-%d %H:%M:%S", tm); in print_file_info_() 353 fprintf(dst, "(%7Lu bytes, from %s)\n", (unsigned long long)sb->st_size, timestr); in print_file_info_()
|
/third_party/ffmpeg/fftools/ |
H A D | cmdutils.h | 113 * @param timestr the string to be parsed 114 * @param is_duration a flag which tells how to interpret timestr, if 115 * not zero timestr is interpreted as a duration, otherwise as a 120 int64_t parse_time_or_die(const char *context, const char *timestr,
|
H A D | cmdutils.c | 122 int64_t parse_time_or_die(const char *context, const char *timestr, in parse_time_or_die() argument 126 if (av_parse_time(&us, timestr, is_duration) < 0) { in parse_time_or_die() 128 is_duration ? "duration" : "date", context, timestr); in parse_time_or_die()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | vtzone.cpp | 2205 UnicodeString timestr; in writeZonePropsByTime() local 2206 writer.write(getDateTimeString(time + fromOffset, timestr)); in writeZonePropsByTime()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | vtzone.cpp | 2205 UnicodeString timestr; in writeZonePropsByTime() local 2206 writer.write(getDateTimeString(time + fromOffset, timestr)); in writeZonePropsByTime()
|
/third_party/python/Lib/ |
H A D | datetime.py | 420 timestr = tstr[:tz_pos-1] if tz_pos > 0 else tstr 422 time_comps = _parse_hh_mm_ss_ff(timestr)
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | vtzone.cpp | 2299 UnicodeString timestr; in writeZonePropsByTime() local 2300 writer.write(getDateTimeString(time + fromOffset, timestr)); in writeZonePropsByTime()
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 4827 timestr = '04:05:59' + (us and '.987001' or '') 4829 tailstr = timestr + ofsstr
|