Home
last modified time | relevance | path

Searched refs:is_enumerable (Results 1 - 9 of 9) sorted by relevance

/third_party/jerryscript/tests/unit-core/
H A Dtest-api-property.cpp61 TEST_ASSERT (prop_desc.is_enumerable == false); in HWTEST_F()
87 TEST_ASSERT (prop_desc.is_enumerable == false); in HWTEST_F()
112 prop_desc.is_enumerable = true; in HWTEST_F()
123 TEST_ASSERT (prop_desc.is_enumerable == true); in HWTEST_F()
H A Dtest-symbol.cpp119 TEST_ASSERT (prop_desc.is_enumerable == true); in HWTEST_F()
136 prop_desc.is_enumerable = false; in HWTEST_F()
150 TEST_ASSERT (prop_desc.is_enumerable == false); in HWTEST_F()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A 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/
H A 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()
H A 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/include/
H A Djerryscript-core.h184 bool is_enumerable; member
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers.c1084 bool is_enumerable) /**< new value for enumerable flag */ in ecma_set_property_enumerable_attr()
1089 if (is_enumerable) in ecma_set_property_enumerable_attr()
1083 ecma_set_property_enumerable_attr(ecma_property_t *property_p, bool is_enumerable) ecma_set_property_enumerable_attr() argument
H A Decma-helpers.h470 void ecma_set_property_enumerable_attr (ecma_property_t *property_p, bool is_enumerable);
/third_party/jerryscript/jerry-core/api/
H A 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_ENUMERABLE 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()

Completed in 12 milliseconds