Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/objects/
Djs-array.h56 bool SetLengthWouldNormalize(uint32_t new_length);
57 static inline bool SetLengthWouldNormalize(Heap* heap, uint32_t new_length);
Djs-array-inl.h42 bool JSArray::SetLengthWouldNormalize(Heap* heap, uint32_t new_length) { in SetLengthWouldNormalize() function
Dobjects.cc5165 if (array->SetLengthWouldNormalize(new_length)) { in SetLength()
5241 bool JSArray::SetLengthWouldNormalize(uint32_t new_length) { in SetLengthWouldNormalize() function in v8::internal::JSArray
5245 return JSArray::SetLengthWouldNormalize(GetHeap(), new_length) && in SetLengthWouldNormalize()
Delements.cc725 DCHECK(!array->SetLengthWouldNormalize(length)); in SetLengthImpl()
/third_party/node/deps/v8/src/runtime/
Druntime-array.cc84 JSArray::SetLengthWouldNormalize(isolate->heap(), value)) { in RUNTIME_FUNCTION()