Home
last modified time | relevance | path

Searched refs:ECMA_LIST_ENUMERABLE (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-string-object.c98 …ecma_collection_t *for_non_enumerable_p = (opts & ECMA_LIST_ENUMERABLE) ? non_enum_collection_p : … in ecma_op_string_list_lazy_property_names()
Decma-function-object.c1604 …ecma_collection_t *for_non_enumerable_p = (opts & ECMA_LIST_ENUMERABLE) ? non_enum_collection_p : … in ecma_op_function_list_lazy_property_names()
1664 …ecma_collection_t *for_non_enumerable_p = (opts & ECMA_LIST_ENUMERABLE) ? non_enum_collection_p : … in ecma_op_external_function_list_lazy_property_names()
1695 …ecma_collection_t *for_non_enumerable_p = (opts & ECMA_LIST_ENUMERABLE) ? non_enum_collection_p : … in ecma_op_bound_function_list_lazy_property_names()
Decma-array-object.c531 bool append_length = (!(opts & ECMA_LIST_ENUMERABLE) && !(opts & ECMA_LIST_ARRAY_INDICES)); in ecma_fast_array_get_property_names()
1215 …ecma_collection_t *for_non_enumerable_p = (opts & ECMA_LIST_ENUMERABLE) ? non_enum_collection_p : … in ecma_op_array_list_lazy_property_names()
Decma-objects.c2106 const bool is_enumerable_only = (opts & ECMA_LIST_ENUMERABLE) != 0; in ecma_op_object_get_property_names()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c708 return ecma_builtin_helper_object_get_properties (obj_p, ECMA_LIST_ENUMERABLE); in ecma_builtin_object_object_keys()
773 … | ECMA_LIST_ENUMERABLE); in ecma_builtin_object_object_define_properties()
982 … | ECMA_LIST_ENUMERABLE in ecma_builtin_object_object_assign()
Decma-builtins.c973 const bool separate_enumerable = (opts & ECMA_LIST_ENUMERABLE) != 0; in ecma_builtin_routine_list_lazy_property_names()
1015 const bool separate_enumerable = (opts & ECMA_LIST_ENUMERABLE) != 0; in ecma_builtin_list_lazy_property_names()
Decma-builtin-json.c633 ecma_collection_t *props_p = ecma_op_object_get_property_names (object_p, ECMA_LIST_ENUMERABLE); in ecma_builtin_json_internalize_property()
901 property_keys_p = ecma_op_object_get_property_names (obj_p, ECMA_LIST_ENUMERABLE); in ecma_builtin_json_serialize_object()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h347 ECMA_LIST_ENUMERABLE = (1 << 1), /**< exclude non-enumerable properties */ enumerator
360 #define ECMA_LIST_ENUMERABLE_PROTOTYPE (ECMA_LIST_ENUMERABLE | ECMA_LIST_PROTOTYPE)
/third_party/jerryscript/jerry-core/api/
Djerry.c2959 ECMA_LIST_ENUMERABLE); in jerry_get_object_keys()