Home
last modified time | relevance | path

Searched refs:enum_keys (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dkeys.cc650 Handle<FixedArray> enum_keys; in CollectOwnPropertyNames() local
652 enum_keys = KeyAccumulator::GetOwnEnumPropertyKeys(isolate_, object); in CollectOwnPropertyNames()
657 if (enum_keys->length() != nof_descriptors) { in CollectOwnPropertyNames()
668 enum_keys = GetOwnEnumPropertyDictionaryKeys( in CollectOwnPropertyNames()
672 enum_keys = GetOwnEnumPropertyDictionaryKeys( in CollectOwnPropertyNames()
678 for (int i = 0, n = enum_keys->length(); i < n; ++i) { in CollectOwnPropertyNames()
679 Handle<String> key(String::cast(enum_keys->get(i)), isolate_); in CollectOwnPropertyNames()
687 AddKeys(enum_keys, DO_NOT_CONVERT); in CollectOwnPropertyNames()
/external/v8/src/interpreter/
Dinterpreter-generator.cc2886 Node* enum_keys = LoadObjectField(enum_cache, EnumCache::kKeysOffset); in IGNITION_HANDLER() local
2898 Node* cache_array = enum_keys; in IGNITION_HANDLER()