Searched refs:is_enumerable (Results 1 – 12 of 12) sorted by relevance
35 TEST_ASSERT (prop_desc.is_enumerable == false); in main()61 TEST_ASSERT (prop_desc.is_enumerable == false); in main()86 prop_desc.is_enumerable = true; in main()97 TEST_ASSERT (prop_desc.is_enumerable == true); in main()
95 TEST_ASSERT (prop_desc.is_enumerable == true); in main()112 prop_desc.is_enumerable = false; in main()126 TEST_ASSERT (prop_desc.is_enumerable == false); in main()
220 bool is_enumerable = (prop_desc.flags & ECMA_PROP_IS_ENUMERABLE); in ecma_builtin_object_prototype_object_property_is_enumerable() local224 return ecma_make_boolean_value (is_enumerable); in ecma_builtin_object_prototype_object_property_is_enumerable()
463 bool is_enumerable = (property_desc_p->flags & ECMA_PROP_IS_ENUMERABLE) != 0; in ecma_op_general_object_define_own_property() local467 && (is_enumerable != ecma_is_property_enumerable (current_prop))))) in ecma_op_general_object_define_own_property()
688 uint32_t is_enumerable = (ecma_op_to_boolean (enumerable_prop_value) ? ECMA_PROP_IS_ENUMERABLE in ecma_op_to_property_descriptor() local691 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | is_enumerable); in ecma_op_to_property_descriptor()
1079 bool is_enumerable) /**< new value for enumerable flag */ in ecma_set_property_enumerable_attr() argument1084 if (is_enumerable) in ecma_set_property_enumerable_attr()
467 void ecma_set_property_enumerable_attr (ecma_property_t *property_p, bool is_enumerable);
184 bool is_enumerable; member
2573 prop_desc_p->is_enumerable = false; in jerry_init_property_descriptor_fields()2616 …flags |= (uint32_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | (prop_desc_p->is_enumerable ? ECMA_PROP_IS_… in jerry_define_own_property()2734 prop_desc_p->is_enumerable = (prop_desc.flags & ECMA_PROP_IS_ENUMERABLE) != 0; in jerry_get_own_property_descriptor()
431 JS_BOOL is_enumerable; member
7487 BOOL is_enumerable, num_sorted; in JS_GetOwnPropertyNamesInternal() local7506 is_enumerable = ((prs->flags & JS_PROP_ENUMERABLE) != 0); in JS_GetOwnPropertyNamesInternal()7508 if ((!(flags & JS_GPN_ENUM_ONLY) || is_enumerable) && in JS_GetOwnPropertyNamesInternal()7550 is_enumerable = FALSE; in JS_GetOwnPropertyNamesInternal()7561 is_enumerable = in JS_GetOwnPropertyNamesInternal()7565 tab_exotic[i].is_enumerable = is_enumerable; in JS_GetOwnPropertyNamesInternal()7567 if (!(flags & JS_GPN_ENUM_ONLY) || is_enumerable) { in JS_GetOwnPropertyNamesInternal()7595 is_enumerable = ((prs->flags & JS_PROP_ENUMERABLE) != 0); in JS_GetOwnPropertyNamesInternal()7597 if ((!(flags & JS_GPN_ENUM_ONLY) || is_enumerable) && in JS_GetOwnPropertyNamesInternal()7608 tab_atom[j].is_enumerable = is_enumerable; in JS_GetOwnPropertyNamesInternal()[all …]
386 bool is_enumerable;