Home
last modified time | relevance | path

Searched refs:key_val (Results 1 – 10 of 10) sorted by relevance

/third_party/gn/src/gn/
Declipse_writer.cc163 for (const auto& key_val : defines_) { in WriteCDTSettings() local
166 macro_element->SubElement("name")->Text(EscapeForXML(key_val.first)); in WriteCDTSettings()
167 macro_element->SubElement("value")->Text(EscapeForXML(key_val.second)); in WriteCDTSettings()
/third_party/gstreamer/gstplugins_base/tools/
Dgst-play-kb.c159 gchar key_val[2] = { 0 }; in gst_play_kb_source_cb() local
175 key_val[0] = buffer.Event.KeyEvent.uChar.AsciiChar; in gst_play_kb_source_cb()
176 kb_callback (key_val, kb_callback_data); in gst_play_kb_source_cb()
/third_party/gstreamer/gstplugins_bad/ext/x265/
Dgstx265enc.c769 GStrv key_val = g_strsplit (kvpairs[i], "=", 2); in gst_x265_enc_parse_options() local
772 api->param_parse (&encoder->x265param, key_val[0], key_val[1]); in gst_x265_enc_parse_options()
776 key_val[0] ? key_val[0] : "", key_val[1] ? key_val[1] : ""); in gst_x265_enc_parse_options()
781 key_val[0] ? key_val[0] : "", key_val[1] ? key_val[1] : ""); in gst_x265_enc_parse_options()
784 g_strfreev (key_val); in gst_x265_enc_parse_options()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspmessage.c799 RTSPKeyValue *key_val; in gst_rtsp_message_find_header_by_name() local
801 key_val = &g_array_index (msg->hdr_fields, RTSPKeyValue, i); in gst_rtsp_message_find_header_by_name()
803 if (key_val->field != field) in gst_rtsp_message_find_header_by_name()
806 if (key_val->custom_key != NULL && in gst_rtsp_message_find_header_by_name()
807 g_ascii_strcasecmp (key_val->custom_key, header) != 0) in gst_rtsp_message_find_header_by_name()
876 RTSPKeyValue *key_val; in gst_rtsp_message_get_header_by_name() local
887 key_val = &g_array_index (msg->hdr_fields, RTSPKeyValue, pos); in gst_rtsp_message_get_header_by_name()
890 *value = key_val->value; in gst_rtsp_message_get_header_by_name()
/third_party/gstreamer/gstplugins_base/tests/examples/overlay/
Dwin32-videooverlay.c369 gchar key_val[2] = { 0 }; in win32_kb_source_cb() local
393 key_val[0] = buffer.Event.KeyEvent.uChar.AsciiChar; in win32_kb_source_cb()
394 switch (key_val[0]) { in win32_kb_source_cb()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-read-common.c2376 gchar *key_val; in gst_matroska_read_common_parse_metadata_id_simple_tag() local
2378 key_val = g_strdup_printf ("%s=%s", name_with_parent, value); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2380 GST_TAG_EXTENDED_COMMENT, key_val, NULL); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2381 g_free (key_val); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2421 gchar *key_val; in gst_matroska_read_common_parse_metadata_id_simple_tag() local
2423 key_val = g_strdup_printf ("%s=%s", tag, value); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2425 GST_TAG_EXTENDED_COMMENT, key_val, NULL); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2426 g_free (key_val); in gst_matroska_read_common_parse_metadata_id_simple_tag()
/third_party/toybox/toys/pending/
Dip.c2593 unsigned key_val; in parse_iptunnel_args() local
2595 sscanf(*argv, "%u", &key_val); in parse_iptunnel_args()
2596 addr = htonl(key_val); in parse_iptunnel_args()
/third_party/python/Doc/whatsnew/
D2.4.rst1107 >>> for key_val, it in itertools.groupby(L, lambda x: x % 2):
1108 ... print key_val, list(it)
/third_party/node/deps/v8/src/api/
Dapi.cc4903 auto key_val = Utils::OpenHandle(*key); in HasOwnProperty() local
4904 auto result = i::JSReceiver::HasOwnProperty(isolate, self, key_val); in HasOwnProperty()
4928 auto key_val = Utils::OpenHandle(*key); in HasRealNamedProperty() local
4930 isolate, i::Handle<i::JSObject>::cast(self), key_val); in HasRealNamedProperty()
4957 auto key_val = Utils::OpenHandle(*key); in HasRealNamedCallbackProperty() local
4959 isolate, i::Handle<i::JSObject>::cast(self), key_val); in HasRealNamedCallbackProperty()
/third_party/gstreamer/gstplugins_good/
DChangeLog39871 After adding to tag list, key_val is not being free'd