Home
last modified time | relevance | path

Searched refs:result_val (Results 1 – 25 of 28) sorted by relevance

12

/third_party/jerryscript/jerry-ext/handler/
Dhandler-register.c35 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/
Dtest-regression-3588.c56 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in main() local
57 TEST_ASSERT (!jerry_value_is_error (result_val)); in main()
58 TEST_ASSERT (jerry_get_boolean_value (result_val) == true); in main()
59 jerry_release_value (result_val); in main()
Dtest-proxy.c122 jerry_value_t result_val = jerry_set_property (target, name_val, value); in set_property() local
124 TEST_ASSERT (jerry_value_is_boolean (result_val)); in set_property()
125 TEST_ASSERT (jerry_get_boolean_value (result_val)); in set_property()
134 jerry_value_t result_val = jerry_get_property (target, name_val); in get_property() local
136 TEST_ASSERT (!jerry_value_is_error (result_val)); in get_property()
138 return result_val; in get_property()
Dtest-symbol.c62 jerry_value_t result_val = jerry_set_property (object, symbol_1, value_1); in main() local
63 TEST_ASSERT (jerry_value_is_boolean (result_val)); in main()
67 result_val = jerry_set_property (object, symbol_2, value_2); in main()
68 TEST_ASSERT (jerry_value_is_boolean (result_val)); in main()
Dtest-promise.c106 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in register_js_function() local
112 jerry_release_value (result_val); in register_js_function()
Dtest-newtarget.c32 jerry_value_t result_val = jerry_set_property (global_obj_val, function_name_val, function_val); in register_js_function() local
37 jerry_release_value (result_val); in register_js_function()
Dtest-arraybuffer.c31 jerry_value_t result_val = jerry_set_property (global_obj_val, name_val, value); in register_js_value() local
32 TEST_ASSERT (jerry_value_is_boolean (result_val)); in register_js_value()
37 jerry_release_value (result_val); in register_js_value()
Dtest-typedarray.c44 jerry_value_t result_val = jerry_set_property (global_obj_val, name_val, value); in register_js_value() local
49 jerry_release_value (result_val); in register_js_value()
/third_party/jerryscript/targets/riot-stm32f4/source/
Dmain-riotos.c37 …jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_… 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/
Dmain-zephyr.c37 …jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_… 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/jerry-main/
Dmain-unix.c271 …jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_… 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/
Djerry_main.c286 …jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_… 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/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfold.cpp665 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()
Dfold_spec_constant_op_and_composite_pass.cpp401 const uint32_t result_val = in DoComponentWiseOperation() local
404 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
Dconst_folding_rules.cpp468 float result_val = integer_type->IsSigned() in FoldIToFOp() local
471 utils::FloatProxy<float> result(result_val); in FoldIToFOp()
475 double result_val = integer_type->IsSigned() in FoldIToFOp() local
478 utils::FloatProxy<double> result(result_val); in FoldIToFOp()
/third_party/spirv-tools/source/opt/
Dfold.cpp665 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()
Dfold_spec_constant_op_and_composite_pass.cpp401 const uint32_t result_val = in DoComponentWiseOperation() local
404 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
Dconst_folding_rules.cpp412 float result_val = integer_type->IsSigned() in FoldIToFOp() local
415 utils::FloatProxy<float> result(result_val); in FoldIToFOp()
419 double result_val = integer_type->IsSigned() in FoldIToFOp() local
422 utils::FloatProxy<double> result(result_val); in FoldIToFOp()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dfold.cpp665 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()
Dfold_spec_constant_op_and_composite_pass.cpp401 const uint32_t result_val = in DoComponentWiseOperation() local
404 result_type, EncodeIntegerAsWords(*result_type, result_val)); in DoComponentWiseOperation()
Dconst_folding_rules.cpp412 float result_val = integer_type->IsSigned() in FoldIToFOp() local
415 utils::FloatProxy<float> result(result_val); in FoldIToFOp()
419 double result_val = integer_type->IsSigned() in FoldIToFOp() local
422 utils::FloatProxy<double> result(result_val); in FoldIToFOp()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-proxy-object.c786 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/
Dtest-ext-arg.c906 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/flutter/skia/third_party/externals/spirv-tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp549 uint32_t result_val = OperateScalars(spec_opcode, operands); in DoComponentWiseOperation() local
550 auto result_const = CreateConst(result_type, {result_val}); in DoComponentWiseOperation()
/third_party/spirv-tools/test/opt/
Dinline_test.cpp3759 ; CHECK: [[result_val:%\d+]] = OpLoad %v4float [[new_result]]
3760 ; CHECK: {{%\d+}} = OpExtInst %void [[ext]] DebugValue [[dbg_result]] [[result_val]]

12