Searched refs:is_utc (Results 1 – 12 of 12) sorted by relevance
/third_party/jerryscript/jerry-port/default/ |
D | default-date.c | 62 bool is_utc) /**< is the time above in UTC? */ in jerry_port_get_local_time_zone_adjustment() argument 68 if (!is_utc) in jerry_port_get_local_time_zone_adjustment() 79 if (!is_utc) in jerry_port_get_local_time_zone_adjustment() 87 (void) is_utc; in jerry_port_get_local_time_zone_adjustment()
|
/third_party/ffmpeg/libavutil/ |
D | parseutils.c | 705 int is_utc = *q == 'Z' || *q == 'z'; in av_parse_time() local 707 q += is_utc; in av_parse_time() 708 if (!today && !is_utc && (*q == '+' || *q == '-')) { in av_parse_time() 721 is_utc = 1; in av_parse_time() 724 struct tm dt2 = is_utc ? *gmtime_r(&now, &tmbuf) : *localtime_r(&now, &tmbuf); in av_parse_time() 730 dt.tm_isdst = is_utc ? 0 : -1; in av_parse_time() 731 t = is_utc ? av_timegm(&dt) : mktime(&dt); in av_parse_time()
|
/third_party/openssl/crypto/asn1/ |
D | a_time.c | 28 static int is_utc(const int year) in IMPLEMENT_ASN1_MSTRING() 272 if (is_utc(ts->tm_year)) in asn1_time_from_tm() 277 if (!is_utc(ts->tm_year)) in asn1_time_from_tm() 413 if (is_utc(tm.tm_year)) { in ASN1_TIME_set_string_X509()
|
/third_party/jerryscript/targets/esp8266/user/ |
D | jerry_port.c | 69 jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc) in jerry_port_get_local_time_zone_adjustment() argument
|
/third_party/jerryscript/targets/zephyr/src/ |
D | jerry-port.c | 67 jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc) in jerry_port_get_local_time_zone_adjustment() argument
|
/third_party/jerryscript/targets/curie_bsp/source/ |
D | curie-bsp-port.c | 57 double jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc) in jerry_port_get_local_time_zone_adjustment() argument
|
/third_party/jerryscript/docs/ |
D | 05.PORT-API.md | 160 * the value of is_utc. Adding the value returned from this function to 181 * @param is_utc Is the given timestamp in UTC time? If false, it is in local 188 double jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc); 305 bool is_utc) /**< is the time above in UTC? */ 310 if (!is_utc)
|
D | 16.MIGRATION-GUIDE.md | 525 bool is_utc) 530 if (!is_utc)
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-port.h | 145 double jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc);
|
/third_party/jerryscript/targets/mbedos5/source/ |
D | jerry_port_mbed.c | 54 jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc) in jerry_port_get_local_time_zone_adjustment() argument
|
/third_party/jerryscript/targets/nuttx-stm32f4/ |
D | jerry_port.c | 171 jerry_port_get_local_time_zone_adjustment (double unix_ms, bool is_utc) in jerry_port_get_local_time_zone_adjustment() argument
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-date-prototype.c | 571 bool is_utc = BUILTIN_DATE_FUNCTION_IS_UTC (builtin_routine_id); in ecma_builtin_date_prototype_dispatch_set() local 575 if (!is_utc) in ecma_builtin_date_prototype_dispatch_set()
|