Lines Matching defs:index
374 return ecma_raise_range_error (ECMA_ERR_MSG ("Invalid scope chain index for eval"));
907 * Read literal index from the byte code stream into destination.
923 * Get literal value by literal index.
925 * @param literal_index literal index
1805 const int index = (int) (opcode_data >> VM_OC_NON_STATIC_SHIFT) - 2;
1807 const int index = -1;
1810 ecma_object_t *object_p = ecma_get_object_from_value (stack_top_p[index]);
1880 const int index = (int) (opcode_data >> VM_OC_NON_STATIC_SHIFT) - 2;
1882 const int index = -1;
1886 stack_top_p[index],
2016 const uint8_t index = (uint8_t) (1 + (opcode - CBC_EXT_ITERATOR_STEP));
2017 result = ecma_op_iterator_step (stack_top_p[-index]);
2071 uint32_t index = 0;
2098 bool set_result = ecma_fast_array_set_property (array_p, index++, value);
3594 uint32_t index = context_top_p[-3];
3597 *stack_top_p++ = buffer_p[index];
3612 uint32_t index = stack_top_p[-3];
3617 while (index < collection_p->item_count)
3619 ecma_string_t *prop_name_p = ecma_get_prop_name_from_value (buffer_p[index]);
3630 index++;
3633 if (index == collection_p->item_count)
3642 stack_top_p[-3] = index;