Home
last modified time | relevance | path

Searched refs:SetLengthWouldNormalize (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/objects/
Djs-array.h41 bool SetLengthWouldNormalize(uint32_t new_length);
42 static inline bool SetLengthWouldNormalize(Heap* heap, uint32_t new_length);
Djs-array-inl.h28 bool JSArray::SetLengthWouldNormalize(Heap* heap, uint32_t new_length) { in SetLengthWouldNormalize() function
/external/v8/src/runtime/
Druntime-array.cc581 JSArray::SetLengthWouldNormalize(isolate->heap(), value)) { in RUNTIME_FUNCTION()
/external/v8/src/
Delements.cc763 DCHECK(!array->SetLengthWouldNormalize(length)); in SetLengthImpl()
Dobjects.cc15196 if (array->SetLengthWouldNormalize(new_length)) { in SetLength()
15799 bool JSArray::SetLengthWouldNormalize(uint32_t new_length) { in SetLengthWouldNormalize() function in v8::internal::JSArray
15803 return JSArray::SetLengthWouldNormalize(GetHeap(), new_length) && in SetLengthWouldNormalize()