Searched refs:new_obj (Results 1 - 9 of 9) sorted by relevance
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | proxy_get_own_property_descriptor.js | 211 var new_obj = { value: "yes", 217 assert(new_obj.value == conf_proxied.value); 218 assert(new_obj.configurable == conf_proxied.configurable); 219 assert(new_obj.writable == conf_proxied.writable); 220 assert(new_obj.enumerable == conf_proxied.enumerable);
|
/third_party/python/Lib/multiprocessing/ |
H A D | sharedctypes.py | 99 new_obj = _new_value(type(obj)) 100 ctypes.pointer(new_obj)[0] = obj 101 return new_obj
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-proxy-gen.cc | 183 TNode<Object> new_obj = in TF_BUILTIN() local 187 GotoIf(TaggedIsSmi(new_obj), ¬_an_object); in TF_BUILTIN() 188 GotoIfNot(IsJSReceiver(CAST(new_obj)), ¬_an_object); in TF_BUILTIN() 191 args.PopAndReturn(new_obj); in TF_BUILTIN() 195 ThrowTypeError(context, MessageTemplate::kProxyConstructNonObject, new_obj); in TF_BUILTIN()
|
H A D | builtins-arraybuffer.cc | 238 Handle<Object> new_obj; in SliceHelper() local 240 isolate, new_obj, Execution::New(isolate, ctor, argc, argv.begin())); in SliceHelper() 242 new_ = Handle<JSReceiver>::cast(new_obj); in SliceHelper()
|
/third_party/alsa-utils/topology/ |
H A D | pre-processor.c | 725 snd_config_t *n2, *new, *new_obj; in pre_process_create_items() local 765 ret = snd_config_make(&new_obj, new_id, SND_CONFIG_TYPE_COMPOUND); in pre_process_create_items() 768 ret = snd_config_add(new_obj, new); in pre_process_create_items() 770 snd_config_delete(new_obj); in pre_process_create_items() 774 ret = snd_config_add(local_top, new_obj); in pre_process_create_items() 776 snd_config_delete(new_obj); in pre_process_create_items()
|
H A D | pre-process-object.c | 1816 static int tplg_build_object(struct tplg_pre_processor *tplg_pp, snd_config_t *new_obj, in tplg_build_object() argument 1827 obj_local = tplg_object_get_instance_config(tplg_pp, new_obj); in tplg_build_object() 1831 class_cfg = tplg_class_lookup(tplg_pp, new_obj); in tplg_build_object() 1849 ret = tplg_object_update(tplg_pp, new_obj, parent); in tplg_build_object() 1921 map = tplg_object_get_map(tplg_pp, new_obj); in tplg_build_object() 1938 ret = builder(tplg_pp, new_obj, parent); in tplg_build_object() 1943 ret = tplg_object_pre_process_children(tplg_pp, new_obj, obj_local); in tplg_build_object() 1950 ret = tplg_object_pre_process_children(tplg_pp, new_obj, class_cfg); in tplg_build_object()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-proxy-object.c | 1790 ecma_value_t new_obj = ecma_op_function_call (func_obj_p, handler, function_call_args, 3); in ecma_proxy_object_construct() local 1796 if (ECMA_IS_VALUE_ERROR (new_obj)) in ecma_proxy_object_construct() 1798 return new_obj; in ecma_proxy_object_construct() 1802 if (!ecma_is_value_object (new_obj)) in ecma_proxy_object_construct() 1804 ecma_free_value (new_obj); in ecma_proxy_object_construct() 1810 return new_obj; in ecma_proxy_object_construct()
|
H A D | ecma-typedarray-object.c | 1355 ecma_value_t new_obj = ecma_typedarray_create_object_with_length (array_length, in ecma_op_create_typedarray_with_type_and_length() local 1361 return new_obj; in ecma_op_create_typedarray_with_type_and_length()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_resource.c | 1243 struct zink_resource_object *new_obj = resource_object_create(screen, &res->base.b, NULL, &res->optimal_tiling, res->modifiers, res->modifiers_count, NULL); in add_resource_bind() local 1244 if (!new_obj) { in add_resource_bind() 1260 res->obj = new_obj; in add_resource_bind() 1592 struct zink_resource_object *new_obj = resource_object_create(screen, &res->base.b, NULL, NULL, NULL, 0, NULL); in invalidate_buffer() local 1593 if (!new_obj) { in invalidate_buffer() 1599 res->obj = new_obj; in invalidate_buffer()
|
Completed in 14 milliseconds