/third_party/cef/libcef/common/ |
D | process_message_impl.cc | 32 auto new_obj = std::make_unique<base::ListValue>(); in CefProcessMessageImpl() local 33 *new_obj = std::move(arguments); in CefProcessMessageImpl() 35 new CefListValueImpl(new_obj.release(), /*will_delete=*/true, read_only); in CefProcessMessageImpl()
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | proxy_get_own_property_descriptor.js | 211 var new_obj = { value: "yes", variable 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/grpc/tools/debug/core/ |
D | chttp2_ref_leak.py | 24 def new_obj(): function 28 outstanding = collections.defaultdict(new_obj)
|
/third_party/python/Lib/multiprocessing/ |
D | sharedctypes.py | 99 new_obj = _new_value(type(obj)) 100 ctypes.pointer(new_obj)[0] = obj 101 return new_obj
|
/third_party/cef/libcef_dll/wrapper/ |
D | cef_xml_object.cc | 213 CefRefPtr<CefXmlObject> new_obj; in Duplicate() local 216 new_obj = new CefXmlObject(name_); in Duplicate() 217 new_obj->Append(this, true); in Duplicate() 219 return new_obj; in Duplicate()
|
/third_party/alsa-utils/topology/ |
D | pre-process-object.c | 1492 static int tplg_build_object(struct tplg_pre_processor *tplg_pp, snd_config_t *new_obj, in tplg_build_object() argument 1502 obj_local = tplg_object_get_instance_config(tplg_pp, new_obj); in tplg_build_object() 1506 class_cfg = tplg_class_lookup(tplg_pp, new_obj); in tplg_build_object() 1524 ret = tplg_object_update(tplg_pp, new_obj, parent); in tplg_build_object() 1541 map = tplg_object_get_map(tplg_pp, new_obj); in tplg_build_object() 1558 ret = builder(tplg_pp, new_obj, parent); in tplg_build_object() 1563 ret = tplg_object_pre_process_children(tplg_pp, new_obj, obj_local); in tplg_build_object() 1570 ret = tplg_object_pre_process_children(tplg_pp, new_obj, class_cfg); in tplg_build_object()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
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()
|
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/mindspore/mindspore/common/ |
D | parameter.py | 168 new_obj = Parameter(self) 169 new_obj.name = self.name 170 new_obj._inited_param = self._inited_param # pylint: disable=W0212 171 return new_obj
|
D | tensor.py | 120 new_obj = Tensor(self) 121 new_obj.init = self.init 122 new_obj._virtual_flag = self._virtual_flag # pylint:disable=w0212 123 return new_obj
|
/third_party/libnl/lib/route/ |
D | netconf.c | 326 static int netconf_update(struct nl_object *old_obj, struct nl_object *new_obj) in netconf_update() argument 328 struct rtnl_netconf *new_nc = (struct rtnl_netconf *) new_obj; in netconf_update() 330 int action = new_obj->ce_msgtype; in netconf_update()
|
D | route_obj.c | 475 static int route_update(struct nl_object *old_obj, struct nl_object *new_obj) in route_update() argument 477 struct rtnl_route *new_route = (struct rtnl_route *) new_obj; in route_update() 480 int action = new_obj->ce_msgtype; in route_update() 565 "to object %p during route update\n", new_obj); in route_update()
|
/third_party/libnl/include/netlink/ |
D | cache.h | 39 struct nl_object *new_obj, uint64_t, int, void *);
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_resource.c | 1030 …struct zink_resource_object *new_obj = resource_object_create(screen, &res->base.b, NULL, NULL, NU… in invalidate_buffer() local 1031 if (!new_obj) { in invalidate_buffer() 1037 res->obj = new_obj; in invalidate_buffer() 1608 …struct zink_resource_object *new_obj = resource_object_create(screen, &res->base.b, NULL, &res->op… in zink_resource_object_init_storage() local 1609 if (!new_obj) { in zink_resource_object_init_storage() 1621 res->obj = new_obj; in zink_resource_object_init_storage()
|
/third_party/boost/libs/functional/factory/doc/ |
D | factory.qbk | 201 whatever do_something(Factory new_obj = Factory()) 203 typename Factory::result_type ptr = new_obj(a, b);
|
/third_party/quickjs/ |
D | quickjs.c | 51211 JSValue ctor, new_obj; in js_array_buffer_slice() local 51233 new_obj = js_array_buffer_constructor2(ctx, JS_UNDEFINED, new_len, in js_array_buffer_slice() 51238 new_obj = JS_CallConstructor(ctx, ctor, 1, (JSValueConst *)args); in js_array_buffer_slice() 51242 if (JS_IsException(new_obj)) in js_array_buffer_slice() 51243 return new_obj; in js_array_buffer_slice() 51244 new_abuf = JS_GetOpaque2(ctx, new_obj, class_id); in js_array_buffer_slice() 51247 if (js_same_value(ctx, new_obj, this_val)) { in js_array_buffer_slice() 51265 return new_obj; in js_array_buffer_slice() 51267 JS_FreeValue(ctx, new_obj); in js_array_buffer_slice()
|