/third_party/jerryscript/jerry-ext/handler/ |
H A D | handler-register.c | 35 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in jerryx_handler_register_global() local 41 return result_val; in jerryx_handler_register_global() 137 jerry_value_t result_val = jerry_set_property (target_object, property_name_val, value); in jerryx_set_property_str() local 141 return result_val; in jerryx_set_property_str() 160 jerry_value_t result_val = jerry_get_property (target_object, prop_name); in jerryx_get_property_str() local 163 return result_val; in jerryx_get_property_str()
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-regression-3588.cpp | 81 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in HWTEST_F() local 82 TEST_ASSERT (!jerry_value_is_error (result_val)); in HWTEST_F() 83 TEST_ASSERT (jerry_get_boolean_value (result_val) == true); in HWTEST_F() 84 jerry_release_value (result_val); in HWTEST_F()
|
H A D | test-proxy.cpp | 124 jerry_value_t result_val = jerry_set_property (target, name_val, value); in set_property() local 126 TEST_ASSERT (jerry_value_is_boolean (result_val)); in set_property() 127 TEST_ASSERT (jerry_get_boolean_value (result_val)); in set_property() 136 jerry_value_t result_val = jerry_get_property (target, name_val); in get_property() local 138 TEST_ASSERT (!jerry_value_is_error (result_val)); in get_property() 140 return result_val; in get_property()
|
H A D | test-symbol.cpp | 86 jerry_value_t result_val = jerry_set_property (object, symbol_1, value_1); in HWTEST_F() local 87 TEST_ASSERT (jerry_value_is_boolean (result_val)); in HWTEST_F() 91 result_val = jerry_set_property (object, symbol_2, value_2); in HWTEST_F() 92 TEST_ASSERT (jerry_value_is_boolean (result_val)); in HWTEST_F()
|
H A D | test-promise.cpp | 107 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in register_js_function() local 113 jerry_release_value (result_val); in register_js_function()
|
H A D | test-arraybuffer.cpp | 32 jerry_value_t result_val = jerry_set_property (global_obj_val, name_val, value); in register_js_value() local 33 TEST_ASSERT (jerry_value_is_boolean (result_val)); in register_js_value() 38 jerry_release_value (result_val); in register_js_value()
|
H A D | test-newtarget.cpp | 33 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in register_js_function() local 38 jerry_release_value (result_val); in register_js_function()
|
H A D | test-typedarray.cpp | 45 jerry_value_t result_val = jerry_set_property (global_obj_val, name_val, value); in register_js_value() local 50 jerry_release_value (result_val); in register_js_value()
|
/third_party/jerryscript/targets/riot-stm32f4/source/ |
H A D | main-riotos.c | 37 jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function() local 39 if (jerry_value_is_error (result_val)) in register_js_function() 44 jerry_release_value (result_val); in register_js_function()
|
/third_party/jerryscript/targets/zephyr/src/ |
H A D | main-zephyr.c | 37 jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function() local 39 if (jerry_value_is_error (result_val)) in register_js_function() 44 jerry_release_value (result_val); in register_js_function()
|
/third_party/spirv-tools/source/opt/ |
H A D | fold.cpp | 669 uint32_t result_val = 0; in FoldInstructionToConstant() local 672 result_val = FoldScalars(inst->opcode(), constants); in FoldInstructionToConstant() 677 successful = FoldIntegerOpToConstant(inst, id_map, &result_val); in FoldInstructionToConstant() 682 const_mgr->GetConstant(const_mgr->GetType(inst), {result_val}); in FoldInstructionToConstant() 688 std::vector<uint32_t> result_val; in FoldInstructionToConstant() local 693 result_val = FoldVectors( in FoldInstructionToConstant() 702 const_mgr->GetType(inst)->AsVector(), result_val); in FoldInstructionToConstant()
|
H A D | fold_spec_constant_op_and_composite_pass.cpp | 312 const uint32_t result_val = in DoComponentWiseOperation() local 315 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
|
H A D | const_folding_rules.cpp | 848 float result_val = integer_type->IsSigned() 851 utils::FloatProxy<float> result(result_val); 855 double result_val = integer_type->IsSigned() 858 utils::FloatProxy<double> result(result_val);
|
/third_party/jerryscript/jerry-main/ |
H A D | main-unix.c | 271 jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function() local 273 if (jerry_value_is_error (result_val)) in register_js_function() 276 result_val = jerry_get_value_from_error (result_val, true); in register_js_function() 277 print_unhandled_exception (result_val); in register_js_function() 280 jerry_release_value (result_val); in register_js_function()
|
/third_party/jerryscript/targets/nuttx-stm32f4/ |
H A D | jerry_main.c | 286 jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function() local 288 if (jerry_value_is_error (result_val)) in register_js_function() 293 jerry_release_value (result_val); in register_js_function()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | fold.cpp | 665 uint32_t result_val = 0; in FoldInstructionToConstant() local 669 result_val = FoldScalars(inst->opcode(), constants); in FoldInstructionToConstant() 674 successful = FoldIntegerOpToConstant(inst, id_map, &result_val); in FoldInstructionToConstant() 679 const_mgr->GetConstant(const_mgr->GetType(inst), {result_val}); in FoldInstructionToConstant()
|
H A D | fold_spec_constant_op_and_composite_pass.cpp | 401 const uint32_t result_val = in DoComponentWiseOperation() local 404 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
|
H A D | const_folding_rules.cpp | 412 float result_val = integer_type->IsSigned() 415 utils::FloatProxy<float> result(result_val); 419 double result_val = integer_type->IsSigned() 422 utils::FloatProxy<double> result(result_val);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | fold.cpp | 665 uint32_t result_val = 0; in FoldInstructionToConstant() local 669 result_val = FoldScalars(inst->opcode(), constants); in FoldInstructionToConstant() 674 successful = FoldIntegerOpToConstant(inst, id_map, &result_val); in FoldInstructionToConstant() 679 const_mgr->GetConstant(const_mgr->GetType(inst), {result_val}); in FoldInstructionToConstant()
|
H A D | fold_spec_constant_op_and_composite_pass.cpp | 401 const uint32_t result_val = in DoComponentWiseOperation() local 404 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
|
H A D | const_folding_rules.cpp | 468 float result_val = integer_type->IsSigned() 471 utils::FloatProxy<float> result(result_val); 475 double result_val = integer_type->IsSigned() 478 utils::FloatProxy<double> result(result_val);
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-proxy-object.c | 786 ecma_value_t result_val = ecma_op_to_property_descriptor (trap_result, prop_desc_p); in ecma_proxy_object_get_own_property_descriptor() local 792 if (ECMA_IS_VALUE_ERROR (result_val)) in ecma_proxy_object_get_own_property_descriptor() 798 return result_val; in ecma_proxy_object_get_own_property_descriptor()
|
/third_party/jerryscript/tests/unit-ext/ |
H A D | test-ext-arg.c | 906 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in register_js_function() local 912 jerry_release_value (result_val); in register_js_function()
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | inline_test.cpp | 4056 ; CHECK: [[result_val:%\d+]] = OpLoad %v4float [[new_result]] 4057 ; CHECK: {{%\d+}} = OpExtInst %void [[ext]] DebugValue [[dbg_result]] [[result_val]]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | inline_test.cpp | 4056 ; CHECK: [[result_val:%\d+]] = OpLoad %v4float [[new_result]] 4057 ; CHECK: {{%\d+}} = OpExtInst %void [[ext]] DebugValue [[dbg_result]] [[result_val]]
|