Home
last modified time | relevance | path

Searched refs:requires_slow_elements (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/objects/
Ddictionary.h327 inline bool requires_slow_elements();
/external/v8/src/
Delements.cc1443 if (dict->requires_slow_elements()) { in SetLengthImpl()
1537 if (!dict->requires_slow_elements()) return false; in HasAccessorsImpl()
1918 bool requires_slow_elements = false; in ValidateContents() local
1925 requires_slow_elements = true; in ValidateContents()
1930 if (requires_slow_elements) { in ValidateContents()
1931 DCHECK(dictionary->requires_slow_elements()); in ValidateContents()
1932 } else if (!dictionary->requires_slow_elements()) { in ValidateContents()
Dobjects-inl.h2011 bool NumberDictionary::requires_slow_elements() { in requires_slow_elements() function
2018 DCHECK(!requires_slow_elements()); in max_number_key()
Dobjects-printer.cc532 if (dict->requires_slow_elements()) { in PrintDictionaryElements()
Dobjects.cc6614 if (dictionary->requires_slow_elements()) return; in RequireSlowElements()
9139 current->element_dictionary()->requires_slow_elements()) { in DictionaryElementsInPrototypeChainOnly()
9146 if (NumberDictionary::cast(arguments)->requires_slow_elements()) { in DictionaryElementsInPrototypeChainOnly()
15721 if (dictionary->requires_slow_elements()) return false; in ShouldConvertToFastElements()
17887 if (!requires_slow_elements()) return false; in HasComplexElements()
17906 if (requires_slow_elements()) return; in UpdateMaxNumberKey()
/external/v8/src/runtime/
Druntime-array.cc186 if (object->IsJSArray() || dict->requires_slow_elements() || in RemoveArrayHoles()