Searched refs:target_keys (Results 1 - 3 of 3) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-proxy-object.c | 1605 ecma_collection_t *target_keys = ecma_op_object_get_property_names (target_obj_p, ECMA_LIST_SYMBOLS); in ecma_proxy_object_own_property_keys() local 1608 if (target_keys == NULL) in ecma_proxy_object_own_property_keys() 1611 return target_keys; in ecma_proxy_object_own_property_keys() 1623 for (uint32_t i = 0; i < target_keys->item_count; i++) in ecma_proxy_object_own_property_keys() 1627 ecma_string_t *prop_name_p = ecma_get_prop_name_from_value (target_keys->buffer_p[i]); in ecma_proxy_object_own_property_keys() 1677 ecma_collection_destroy (target_keys); in ecma_proxy_object_own_property_keys()
|
/third_party/node/deps/v8/src/objects/ |
H A D | keys.cc | 1269 Handle<FixedArray> target_keys; in CollectOwnJSProxyKeys() local 1270 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, target_keys, in CollectOwnJSProxyKeys() 1275 // To save memory, we're re-using target_keys and will modify it in-place. in CollectOwnJSProxyKeys() 1276 Handle<FixedArray> target_configurable_keys = target_keys; in CollectOwnJSProxyKeys() 1279 isolate_->factory()->NewFixedArray(target_keys->length()); in CollectOwnJSProxyKeys() 1282 for (int i = 0; i < target_keys->length(); ++i) { in CollectOwnJSProxyKeys() 1286 isolate_, target, handle(target_keys->get(i), isolate_), &desc); in CollectOwnJSProxyKeys() 1292 target_keys->get(i)); in CollectOwnJSProxyKeys() 1295 target_keys->set(i, Smi::zero()); in CollectOwnJSProxyKeys() 1299 // (No-op, just keep it in |target_keys| in CollectOwnJSProxyKeys() [all...] |
/third_party/python/Lib/ |
H A D | sysconfig.py | 254 target_keys = target_dict.keys() 256 if key in target_keys:
|
Completed in 6 milliseconds