Lines Matching refs:result
73 ecma_number_t result = ecma_op_to_integer (int_num, &num);
77 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
83 result = ecma_op_to_integer (error, &num);
87 TEST_ASSERT (ECMA_IS_VALUE_ERROR (result));
92 result = ecma_op_to_integer (nan, &num);
96 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
103 result = ecma_op_to_integer (negative_zero, &num);
107 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
113 result = ecma_op_to_integer (positive_zero, &num);
117 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
123 result = ecma_op_to_integer (negative_infinity, &num);
127 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
133 result = ecma_op_to_integer (positive_infinity, &num);
137 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
143 result = ecma_op_to_integer (floor, &num);
147 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));
152 result = ecma_op_to_integer (floor2, &num);
156 TEST_ASSERT (!ECMA_IS_VALUE_ERROR (result));