Home
last modified time | relevance | path

Searched refs:is_enumerable (Results 1 – 12 of 12) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-api-property.c35 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()
Dtest-symbol.c95 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()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object-prototype.c220 bool is_enumerable = (prop_desc.flags & ECMA_PROP_IS_ENUMERABLE); in ecma_builtin_object_prototype_object_property_is_enumerable() local
224 return ecma_make_boolean_value (is_enumerable); in ecma_builtin_object_prototype_object_property_is_enumerable()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c463 bool is_enumerable = (property_desc_p->flags & ECMA_PROP_IS_ENUMERABLE) != 0; in ecma_op_general_object_define_own_property() local
467 && (is_enumerable != ecma_is_property_enumerable (current_prop))))) in ecma_op_general_object_define_own_property()
Decma-conversion.c688 uint32_t is_enumerable = (ecma_op_to_boolean (enumerable_prop_value) ? ECMA_PROP_IS_ENUMERABLE in ecma_op_to_property_descriptor() local
691 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | is_enumerable); in ecma_op_to_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers.c1079 bool is_enumerable) /**< new value for enumerable flag */ in ecma_set_property_enumerable_attr() argument
1084 if (is_enumerable) in ecma_set_property_enumerable_attr()
Decma-helpers.h467 void ecma_set_property_enumerable_attr (ecma_property_t *property_p, bool is_enumerable);
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h184 bool is_enumerable; member
/third_party/jerryscript/jerry-core/api/
Djerry.c2573 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()
/third_party/quickjs/
Dquickjs.h431 JS_BOOL is_enumerable; member
Dquickjs.c7487 BOOL is_enumerable, num_sorted; in JS_GetOwnPropertyNamesInternal() local
7506 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 …]
/third_party/jerryscript/docs/
D02.API-REFERENCE.md386 bool is_enumerable;