/third_party/gstreamer/gstplugins_bad/ext/gs/ |
D | gstgssink.cpp | 127 gchar* object_name; member 181 const char* object_name, in GSWriteStream() argument 184 object_name, in GSWriteStream() 363 sink->object_name = g_strdup(DEFAULT_OBJECT_NAME); in gst_gs_sink_init() 385 g_free(sink->object_name); in gst_gs_sink_finalize() 386 sink->object_name = NULL; in gst_gs_sink_finalize() 400 const gchar* object_name) { in gst_gs_sink_set_object_name() argument 401 g_free(sink->object_name); in gst_gs_sink_set_object_name() 402 sink->object_name = NULL; in gst_gs_sink_set_object_name() 406 if (!object_name) { in gst_gs_sink_set_object_name() [all …]
|
D | gstgssrc.cpp | 85 std::string object_name; member 129 src->object_name, in GSReadStream() 268 src->object_name = filepath.substr(delimiter + 1); in gst_gs_src_set_location() 272 GST_INFO_OBJECT(src, "object name is %s", src->object_name.c_str()); in gst_gs_src_set_location() 542 src->bucket_name.c_str(), src->object_name.c_str()); in gst_gs_src_start() 545 src->gcs_client->GetObjectMetadata(src->bucket_name, src->object_name); in gst_gs_src_start()
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
D | interface.any.js | 4 function test_operations(object, object_name, operations) { argument 13 }, `${object_name}.${name}`); 16 assert_function_name(object[name], name, `${object_name}.${name}`); 17 }, `${object_name}.${name}: name`); 20 assert_function_length(object[name], length, `${object_name}.${name}`); 21 }, `${object_name}.${name}: length`); 25 function test_attributes(object, object_name, attributes) { argument 32 }, `${object_name}.${name}`); 40 }, `${object_name}.${name}: getter`); 52 }, `${object_name}.${name}: setter`);
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/variable_statements/3_implied_type/ |
D | implied_type.ts | 24 var object_name = { variable 28 function f({ aa = {}, b = "hello", c = 3, d = object_name }) { 39 d: object_name 43 var [a1, b1, c1, d1] = [1, "hello", true, object_name]; variable
|
/third_party/vulkan-loader/loader/ |
D | log.c | 110 VkDebugUtilsObjectNameInfoEXT object_name; in loader_log() local 146 callback_data.pObjects = &object_name; in loader_log() 147 object_name.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT; in loader_log() 148 object_name.pNext = NULL; in loader_log() 149 object_name.objectType = VK_OBJECT_TYPE_INSTANCE; in loader_log() 150 object_name.objectHandle = (uint64_t)(uintptr_t)inst; in loader_log() 151 object_name.pObjectName = NULL; in loader_log()
|
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/ |
D | entrypoint.c | 120 strcpy ((OMX_STRING) h264dprc_type.object_name, "h264dprc"); in OMX_ComponentInit() 125 strcpy ((OMX_STRING) h264d_inport_type.object_name, "h264dinport"); in OMX_ComponentInit() 130 strcpy ((OMX_STRING) h264eprc_type.object_name, "h264eprc"); in OMX_ComponentInit() 135 strcpy ((OMX_STRING) h264e_inport_type.object_name, "h264einport"); in OMX_ComponentInit() 140 strcpy ((OMX_STRING) h264e_outport_type.object_name, "h264eoutport"); in OMX_ComponentInit()
|
/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_object.c | 42 base->object_name = NULL; in vk_object_base_init() 51 if (base->object_name != NULL) in vk_object_base_finish() 52 vk_free(&base->device->alloc, base->object_name); in vk_object_base_finish() 322 if (obj->object_name) in vk_object_base_name() 323 return obj->object_name; in vk_object_base_name() 325 obj->object_name = vk_asprintf(&obj->device->alloc, in vk_object_base_name() 331 return obj->object_name; in vk_object_base_name()
|
D | vk_debug_utils.c | 166 if (object->object_name) { in vk_common_SetDebugUtilsObjectNameEXT() 167 vk_free(&device->alloc, object->object_name); in vk_common_SetDebugUtilsObjectNameEXT() 168 object->object_name = NULL; in vk_common_SetDebugUtilsObjectNameEXT() 170 object->object_name = vk_strdup(&device->alloc, pNameInfo->pObjectName, in vk_common_SetDebugUtilsObjectNameEXT() 172 if (!object->object_name) in vk_common_SetDebugUtilsObjectNameEXT()
|
/third_party/jerryscript/tests/unit-core/ |
D | test-native-instanceof.cpp | 99 jerry_value_t object_name = jerry_create_string ((jerry_char_t *) "Object"); variable 100 constructor = jerry_get_property (global, object_name); 101 jerry_release_value (object_name);
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
D | apps_ui.c | 104 const char *object_name) in ui_prompt_construct() argument 110 if (object_name == NULL && cb_data != NULL) in ui_prompt_construct() 111 object_name = cb_data->prompt_info; in ui_prompt_construct() 112 return UI_construct_prompt(NULL, phrase_desc, object_name); in ui_prompt_construct()
|
/third_party/openssl/apps/lib/ |
D | apps_ui.c | 104 const char *object_name) in ui_prompt_construct() argument 110 if (object_name == NULL && cb_data != NULL) in ui_prompt_construct() 111 object_name = cb_data->prompt_info; in ui_prompt_construct() 112 return UI_construct_prompt(NULL, phrase_desc, object_name); in ui_prompt_construct()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/variable_statements/2_destructuring_variable_declarations/ |
D | destructuring_variable_declarations_1.ts | 24 var object_name = { variable 32 var { key1, key2: y, key3, key4: z = false, key5: k = true } = object_name;
|
D | destructuring_variable_declarations_3.ts | 34 var object_name = { variable 45 var { key1, key3: [y, z = 10, k = 10] = ohArray, key5: [a, b] = ohArray } = object_name;
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstchildproxy.c | 64 gchar *object_name; in gst_child_proxy_default_get_child_by_name() local 81 object_name = gst_object_get_name (GST_OBJECT_CAST (object)); in gst_child_proxy_default_get_child_by_name() 82 if (object_name == NULL) { in gst_child_proxy_default_get_child_by_name() 87 eq = g_str_equal (object_name, name); in gst_child_proxy_default_get_child_by_name() 88 g_free (object_name); in gst_child_proxy_default_get_child_by_name()
|
/third_party/alsa-utils/topology/ |
D | pre-process-object.c | 841 const char *object_name; in tplg_build_object_from_template() local 868 object_name = tplg_object_get_name(tplg_pp, obj); in tplg_build_object_from_template() 869 if (!object_name) { in tplg_build_object_from_template() 870 ret = snd_config_get_id(obj, &object_name); in tplg_build_object_from_template() 877 tplg_pp_debug("Building object: '%s' ...", object_name); in tplg_build_object_from_template() 883 *wtop = tplg_find_config(top, object_name); in tplg_build_object_from_template() 887 ret = tplg_config_make_add(wtop, object_name, SND_CONFIG_TYPE_COMPOUND, in tplg_build_object_from_template() 890 SNDERR("Error creating config for %s\n", object_name); in tplg_build_object_from_template() 902 SNDERR("Error creating template config for %s\n", object_name); in tplg_build_object_from_template() 910 SNDERR("Error adding attributes for object '%s'\n", object_name); in tplg_build_object_from_template()
|
/third_party/openssl/crypto/ui/ |
D | ui_lib.c | 357 const char *object_name) in UI_construct_prompt() argument 362 prompt = ui->meth->ui_construct_prompt(ui, phrase_desc, object_name); in UI_construct_prompt() 372 if (object_name != NULL) in UI_construct_prompt() 373 len += sizeof(prompt2) - 1 + strlen(object_name); in UI_construct_prompt() 382 if (object_name != NULL) { in UI_construct_prompt() 384 OPENSSL_strlcat(prompt, object_name, len + 1); in UI_construct_prompt()
|
D | ui_local.h | 54 const char *object_name);
|
/third_party/node/deps/openssl/openssl/crypto/ui/ |
D | ui_lib.c | 357 const char *object_name) in UI_construct_prompt() argument 362 prompt = ui->meth->ui_construct_prompt(ui, phrase_desc, object_name); in UI_construct_prompt() 372 if (object_name != NULL) in UI_construct_prompt() 373 len += sizeof(prompt2) - 1 + strlen(object_name); in UI_construct_prompt() 382 if (object_name != NULL) { in UI_construct_prompt() 384 OPENSSL_strlcat(prompt, object_name, len + 1); in UI_construct_prompt()
|
D | ui_local.h | 54 const char *object_name);
|
/third_party/vulkan-loader/tests/framework/ |
D | test_util.cpp | 95 void print_list_of_t(std::string& out, const char* object_name, std::vector<T> const& vec) { in print_list_of_t() argument 97 out += std::string(",\n\t\t\"") + object_name + "\": {"; in print_list_of_t() 107 void print_vector_of_t(std::string& out, const char* object_name, std::vector<T> const& vec) { in print_vector_of_t() argument 109 out += std::string(",\n\t\t\"") + object_name + "\": ["; in print_vector_of_t() 117 void print_vector_of_strings(std::string& out, const char* object_name, std::vector<std::string> co… in print_vector_of_strings() argument 119 out += std::string(",\n\t\t\"") + object_name + "\": ["; in print_vector_of_strings()
|
/third_party/libbpf/fuzz/ |
D | bpf-object-fuzzer.c | 15 opts.object_name = "fuzz-object"; in LLVMFuzzerTestOneInput()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | ui.h | 153 const char *object_desc, const char *object_name); 313 *object_name));
|
/third_party/mesa3d/src/broadcom/cle/ |
D | gen_pack_header.py | 447 object_name = self.gen_prefix(safe_name(attrs["name"].upper())) 449 self.packet = object_name 462 self.struct = object_name 465 self.register = object_name
|
/third_party/PyYAML/lib/yaml/ |
D | constructor.py | 545 module_name, object_name = name.rsplit('.', 1) 548 object_name = name 559 if not hasattr(module, object_name): 562 % (object_name, module.__name__), mark) 563 return getattr(module, object_name)
|
/third_party/pulseaudio/src/modules/bluetooth/ |
D | backend-native.c | 1116 const char *object_name; in profile_init() local 1123 object_name = HSP_AG_PROFILE; in profile_init() 1127 object_name = HSP_HS_PROFILE; in profile_init() 1131 object_name = HFP_AG_PROFILE; in profile_init() 1139 …connection_register_object_path(pa_dbus_connection_get(b->connection), object_name, &vtable_profil… in profile_init() 1142 register_profile(b, object_name, uuid, profile); in profile_init()
|