Home
last modified time | relevance | path

Searched refs:data_string (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/
D_strptime.py309 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/
Dmicrodvddec.c47 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/
Dmmst.c180 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/
Dbackport-gkeyfile-Fix-group-comment-management.patch217 - 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/
Ddefault_value_objectwriter.cc588 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/
Dcoap_net.c2508 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/
Denv_properties.h89 V(data_string, "data") \
Dnode_messaging.cc1216 if (!result->Get(context, env()->data_string()).ToLocal(&data) || in TransferOrClone()
/third_party/python/Lib/test/
Dtest_strptime.py211 self.assertRaises(ValueError, _strptime._strptime_time, data_string="%d",