/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-proxy-object.c | 436 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 2); in ecma_proxy_object_set_prototype_of() local 441 if (ECMA_IS_VALUE_ERROR (trap_result)) in ecma_proxy_object_set_prototype_of() 443 return trap_result; in ecma_proxy_object_set_prototype_of() 446 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_set_prototype_of() 448 ecma_free_value (trap_result); in ecma_proxy_object_set_prototype_of() 531 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, &target, 1); in ecma_proxy_object_is_extensible() local 536 if (ECMA_IS_VALUE_ERROR (trap_result)) in ecma_proxy_object_is_extensible() 538 return trap_result; in ecma_proxy_object_is_extensible() 541 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_is_extensible() 543 ecma_free_value (trap_result); in ecma_proxy_object_is_extensible() 624 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, &target, 1); ecma_proxy_object_prevent_extensions() local 705 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 2); ecma_proxy_object_get_own_property_descriptor() local 886 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 3); ecma_proxy_object_define_own_property() local 1028 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 2); ecma_proxy_object_has() local 1132 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 3); ecma_proxy_object_get() local 1237 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 4); ecma_proxy_object_set() local 1347 ecma_value_t trap_result = ecma_op_function_call (func_obj_p, handler, args, 2); ecma_proxy_object_delete_property() local 1477 ecma_proxy_check_invariants_for_own_prop_keys(ecma_collection_t *trap_result, ecma_collection_t *target_non_configurable_keys, ecma_collection_t *target_configurable_keys, ecma_value_t extensible_target) ecma_proxy_check_invariants_for_own_prop_keys() argument 1584 ecma_collection_t *trap_result = ecma_op_create_list_from_array_like (trap_result_array, true); ecma_proxy_object_own_property_keys() local [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-proxy-gen.cc | 214 TNode<Name> name, TNode<Object> trap_result, in CheckGetSetTrapResult() 216 // TODO(mslekova): Think of a better name for the trap_result param. in CheckGetSetTrapResult() 255 BranchIfSameValue(trap_result, var_value.value(), &check_passed, in CheckGetSetTrapResult() 277 GotoIfNot(IsUndefined(trap_result), &throw_non_configurable_accessor); in CheckGetSetTrapResult() 293 name, var_value.value(), trap_result); in CheckGetSetTrapResult() 304 trap_result); in CheckGetSetTrapResult() 313 trap_result, SmiConstant(access_kind)); in CheckGetSetTrapResult() 212 CheckGetSetTrapResult( TNode<Context> context, TNode<JSReceiver> target, TNode<JSProxy> proxy, TNode<Name> name, TNode<Object> trap_result, JSProxy::AccessKind access_kind) CheckGetSetTrapResult() argument
|
H A D | builtins-proxy-gen.h | 26 TNode<Object> trap_result,
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-proxy.cc | 94 Handle<Object> trap_result = args.at(2); in RUNTIME_FUNCTION() local 98 isolate, name, target, trap_result, in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/objects/ |
H A D | keys.cc | 1231 Handle<FixedArray> trap_result; in CollectOwnJSProxyKeys() local 1233 isolate_, trap_result, in CollectOwnJSProxyKeys() 1251 for (int i = 0; i < trap_result->length(); ++i) { in CollectOwnJSProxyKeys() 1252 Handle<Name> key(Name::cast(trap_result->get(i)), isolate_); in CollectOwnJSProxyKeys() 1306 return AddKeysFromJSProxy(proxy, trap_result); in CollectOwnJSProxyKeys() 1327 return AddKeysFromJSProxy(proxy, trap_result); in CollectOwnJSProxyKeys() 1354 return AddKeysFromJSProxy(proxy, trap_result); in CollectOwnJSProxyKeys()
|
H A D | js-proxy.h | 80 Handle<Object> trap_result,
|
H A D | objects.cc | 1223 Handle<Object> trap_result; in GetProperty() local 1226 isolate, trap_result, in GetProperty() 1230 JSProxy::CheckGetSetTrapResult(isolate, name, target, trap_result, kGet); in GetProperty() 1235 // 11. Return trap_result in GetProperty() 1236 return trap_result; in GetProperty() 1243 Handle<Object> trap_result, in CheckGetSetTrapResult() 1259 !trap_result->SameValue(*target_desc.value()); in CheckGetSetTrapResult() 1265 target_desc.value(), trap_result), in CheckGetSetTrapResult() 1280 !trap_result->IsUndefined(isolate); in CheckGetSetTrapResult() 1291 name, trap_result), in CheckGetSetTrapResult() 1240 CheckGetSetTrapResult(Isolate* isolate, Handle<Name> name, Handle<JSReceiver> target, Handle<Object> trap_result, AccessKind access_kind) CheckGetSetTrapResult() argument 3157 Handle<Object> trap_result; SetProperty() local 3204 Handle<Object> trap_result; DeletePropertyOrElement() local 3801 Handle<Object> trap_result; PreventExtensions() local 3845 Handle<Object> trap_result; IsExtensible() local 5204 Handle<Object> trap_result; SetPrototype() local [all...] |