Home
last modified time | relevance | path

Searched refs:existing_feature (Results 1 – 6 of 6) sorted by relevance

/dports/multimedia/gstreamer1/gstreamer-1.16.2/gst/
H A Dgstdynamictypefactory.c149 GstPluginFeature *existing_feature; in gst_dynamic_type_register() local
159 existing_feature = gst_registry_lookup_feature (registry, name); in gst_dynamic_type_register()
160 if (existing_feature) { in gst_dynamic_type_register()
162 existing_feature, name); in gst_dynamic_type_register()
163 existing_feature->loaded = TRUE; in gst_dynamic_type_register()
164 GST_DYNAMIC_TYPE_FACTORY (existing_feature)->type = dyn_type; in gst_dynamic_type_register()
165 gst_object_unref (existing_feature); in gst_dynamic_type_register()
H A Dgsttracer.c147 GstPluginFeature *existing_feature; in gst_tracer_register() local
159 existing_feature = gst_registry_lookup_feature (registry, name); in gst_tracer_register()
160 if (existing_feature) { in gst_tracer_register()
162 existing_feature, name); in gst_tracer_register()
163 factory = GST_TRACER_FACTORY_CAST (existing_feature); in gst_tracer_register()
165 existing_feature->loaded = TRUE; in gst_tracer_register()
166 gst_object_unref (existing_feature); in gst_tracer_register()
H A Dgstdeviceproviderfactory.c174 GstPluginFeature *existing_feature; in gst_device_provider_register() local
188 existing_feature = gst_registry_lookup_feature (registry, name); in gst_device_provider_register()
189 if (existing_feature) { in gst_device_provider_register()
191 existing_feature, name); in gst_device_provider_register()
192 factory = GST_DEVICE_PROVIDER_FACTORY_CAST (existing_feature); in gst_device_provider_register()
194 existing_feature->loaded = TRUE; in gst_device_provider_register()
196 gst_object_unref (existing_feature); in gst_device_provider_register()
H A Dgstelementfactory.c204 GstPluginFeature *existing_feature; in gst_element_register() local
221 existing_feature = gst_registry_lookup_feature (registry, name); in gst_element_register()
222 if (existing_feature) { in gst_element_register()
224 existing_feature, name); in gst_element_register()
225 factory = GST_ELEMENT_FACTORY_CAST (existing_feature); in gst_element_register()
227 existing_feature->loaded = TRUE; in gst_element_register()
229 gst_object_unref (existing_feature); in gst_element_register()
H A Dgstregistry.c557 GstPluginFeature *existing_feature; in gst_registry_add_feature() local
565 existing_feature = gst_registry_lookup_feature_locked (registry, in gst_registry_add_feature()
567 if (G_UNLIKELY (existing_feature)) { in gst_registry_add_feature()
569 existing_feature, GST_OBJECT_NAME (feature)); in gst_registry_add_feature()
574 g_list_remove (registry->priv->features, existing_feature); in gst_registry_add_feature()
584 if (G_UNLIKELY (existing_feature)) { in gst_registry_add_feature()
587 gst_object_unparent (GST_OBJECT_CAST (existing_feature)); in gst_registry_add_feature()
/dports/biology/py-gffutils/gffutils-0.10.1/gffutils/
H A Dcreate.py260 for existing_feature in self._candidate_merges(f):
272 features_to_merge.append(existing_feature)
277 % (existing_feature, f))
285 % (existing_feature, f))
314 for existing_feature in features_to_merge:
318 for k in existing_feature.attributes.keys():
320 v.extend(existing_feature[k])
326 [getattr(existing_feature, field)])
331 existing_feature.attributes = merged_attributes
338 logger.debug('\nMERGED:\n%s' % existing_feature)
[all …]