/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
H A D | interface.any.js | 4 function test_operations(object, object_name, operations) { 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) { 32 }, `${object_name}.${name}`); 40 }, `${object_name}.${name}: getter`); 52 }, `${object_name} [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/ |
H A 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/vulkan-loader/loader/ |
H A D | log.c | 110 VkDebugUtilsObjectNameInfoEXT object_name = {0}; in loader_log() local 139 callback_data.pObjects = &object_name; in loader_log() 140 object_name.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT; in loader_log() 141 object_name.objectType = VK_OBJECT_TYPE_INSTANCE; in loader_log() 142 object_name.objectHandle = (uint64_t)(uintptr_t)inst; in loader_log()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A 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()
|
H A 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/ |
H A D | test-native-instanceof.cpp | 99 jerry_value_t object_name = jerry_create_string ((jerry_char_t *) "Object"); in HWTEST_F() local 100 constructor = jerry_get_property (global, object_name); in HWTEST_F() 101 jerry_release_value (object_name); in HWTEST_F()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps_ui.c | 102 /* object_name defaults to prompt_info from ui user data if present */ 104 const char *object_name) in ui_prompt_construct() 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() 103 ui_prompt_construct(UI *ui, const char *phrase_desc, const char *object_name) ui_prompt_construct() argument
|
/third_party/openssl/apps/lib/ |
H A D | apps_ui.c | 102 /* object_name defaults to prompt_info from ui user data if present */ 104 const char *object_name) in ui_prompt_construct() 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() 103 ui_prompt_construct(UI *ui, const char *phrase_desc, const char *object_name) ui_prompt_construct() argument
|
/third_party/libbpf/fuzz/ |
H A D | bpf-object-fuzzer.c | 15 opts.object_name = "fuzz-object"; in LLVMFuzzerTestOneInput()
|
/third_party/node/deps/openssl/openssl/crypto/ui/ |
H A D | ui_lib.c | 357 const char *object_name) in UI_construct_prompt() 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() 356 UI_construct_prompt(UI *ui, const char *phrase_desc, const char *object_name) UI_construct_prompt() argument
|
H A D | ui_local.h | 49 * object_name is the name of the object (might be a card name or a file 54 const char *object_name);
|
/third_party/openssl/crypto/ui/ |
H A D | ui_lib.c | 357 const char *object_name) in UI_construct_prompt() 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() 356 UI_construct_prompt(UI *ui, const char *phrase_desc, const char *object_name) UI_construct_prompt() argument
|
H A D | ui_local.h | 49 * object_name is the name of the object (might be a card name or a file 54 const char *object_name);
|
/third_party/vulkan-loader/tests/framework/ |
H A D | test_util.cpp | 95 void print_object_of_t(JsonWriter& writer, const char* object_name, std::vector<T> const& vec) { in print_object_of_t() argument 97 writer.StartKeyedObject(object_name); in print_object_of_t() 105 void print_array_of_t(JsonWriter& writer, const char* object_name, std::vector<T> const& vec) { in print_array_of_t() argument 107 writer.StartKeyedArray(object_name); in print_array_of_t() 113 void print_vector_of_strings(JsonWriter& writer, const char* object_name, std::vector<std::string> const& strings) { in print_vector_of_strings() argument 115 writer.StartKeyedArray(object_name); in print_vector_of_strings()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ui.h | 137 * and object_name is the name of the object (might be a card name or 145 * "Enter {object_desc} for {object_name}:" 147 * So, if object_desc has the value "pass phrase" and object_name has 153 const char *object_desc, const char *object_name); 313 *object_name));
|
/third_party/mesa3d/src/broadcom/cle/ |
H A 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/ |
H A 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/alsa-utils/topology/ |
H A D | pre-process-object.c | 906 const char *object_name; in tplg_build_object_from_template() local 933 object_name = tplg_object_get_name(tplg_pp, obj); in tplg_build_object_from_template() 934 if (!object_name) { in tplg_build_object_from_template() 935 ret = snd_config_get_id(obj, &object_name); in tplg_build_object_from_template() 942 tplg_pp_debug("Building object: '%s' ...", object_name); in tplg_build_object_from_template() 948 *wtop = tplg_find_config(top, object_name); in tplg_build_object_from_template() 952 ret = tplg_config_make_add(wtop, object_name, SND_CONFIG_TYPE_COMPOUND, in tplg_build_object_from_template() 955 SNDERR("Error creating config for %s\n", object_name); in tplg_build_object_from_template() 967 SNDERR("Error creating template config for %s\n", object_name); in tplg_build_object_from_template() 975 SNDERR("Error adding attributes for object '%s'\n", object_name); in tplg_build_object_from_template() [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ |
H A D | ui.h | 149 * object_name is the name of the object 157 * "Enter {phrase_desc} for {object_name}:" 159 * So, if phrase_desc has the value "pass phrase" and object_name has 165 const char *phrase_desc, const char *object_name); 352 *object_name));
|