Searched refs:data_string (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/ |
D | _strptime.py | 309 def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): argument 314 for index, arg in enumerate([data_string, format]): 347 found = format_regex.match(data_string) 350 (data_string, format)) 351 if len(data_string) != found.end(): 353 data_string[found.end():]) 559 def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"): argument 562 tt = _strptime(data_string, format)[0] 565 def _strptime_datetime(cls, data_string, format="%a %b %d %H:%M:%S %Y"): argument 568 tt, fraction, gmtoff_fraction = _strptime(data_string, format)
|
/third_party/ffmpeg/libavcodec/ |
D | microdvddec.c | 47 char *data_string; member 136 tag.data_string = s; in microdvd_load_tags() 159 tag.data_string = s; in microdvd_load_tags() 223 tags[i].data_string_len, tags[i].data_string); in microdvd_open_tags() 360 tags[i].data_string_len, tags[i].data_string); in microdvd_init()
|
/third_party/ffmpeg/libavformat/ |
D | mmst.c | 180 char data_string[256]; in send_protocol_select() local 188 snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d", in send_protocol_select() 196 if ((ret = mms_put_utf16(mms, data_string)) < 0) in send_protocol_select() 426 char data_string[256]; in send_startup_packet() local 433 snprintf(data_string, sizeof(data_string), in send_startup_packet() 440 if ((ret = mms_put_utf16(mms, data_string)) < 0) in send_startup_packet()
|
/third_party/glib/patch/ |
D | backport-gkeyfile-Fix-group-comment-management.patch | 217 - if (data_string->len >= 2 && 218 - data_string->str[data_string->len - 2] != '\n') 219 - g_string_append_c (data_string, '\n'); 222 - g_string_append_printf (data_string, "%s\n", group->comment->value); 225 g_string_append_printf (data_string, "[%s]\n", group->name);
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | default_value_objectwriter.cc | 588 util::StatusOr<std::string> data_string = data.ToString(); in RenderDataPiece() local 589 if (data_string.ok()) { in RenderDataPiece() 590 const std::string& string_value = data_string.value(); in RenderDataPiece()
|
/third_party/libcoap/src/ |
D | coap_net.c | 2508 coap_string_t *data_string = NULL; in hnd_get_wellknown() local 2515 data_string = coap_new_string(wkc_len); in hnd_get_wellknown() 2516 if (!data_string) in hnd_get_wellknown() 2520 result = coap_print_wellknown(session->context, data_string->s, &len, 0, in hnd_get_wellknown() 2527 data_string->length = len; in hnd_get_wellknown() 2546 if (!coap_add_data(response, len, data_string->s)) { in hnd_get_wellknown() 2549 free_wellknown_response(session, data_string); in hnd_get_wellknown() 2553 -1, 0, data_string->length, in hnd_get_wellknown() 2554 data_string->s, in hnd_get_wellknown() 2556 data_string)) { in hnd_get_wellknown() [all …]
|
/third_party/node/src/ |
D | env_properties.h | 89 V(data_string, "data") \
|
D | node_messaging.cc | 1216 if (!result->Get(context, env()->data_string()).ToLocal(&data) || in TransferOrClone()
|
/third_party/python/Lib/test/ |
D | test_strptime.py | 211 self.assertRaises(ValueError, _strptime._strptime_time, data_string="%d",
|