/third_party/node/deps/v8/src/objects/ |
H A D | elements.h | 165 virtual void CopyElements(Isolate* isolate, Handle<FixedArrayBase> source, 169 virtual Object CopyElements(Handle<Object> source, 209 virtual void CopyElements(JSObject source_holder, uint32_t source_start,
|
H A D | property-array.h | 47 // Signature must be in sync with FixedArray::CopyElements(). 48 inline void CopyElements(Isolate* isolate, int dst_index, PropertyArray src,
|
H A D | fixed-array.h | 174 inline void CopyElements(Isolate* isolate, int dst_index, FixedArray src, 315 inline void CopyElements(Isolate* isolate, int dst_index, WeakFixedArray src, 396 inline void CopyElements(Isolate* isolate, int dst_index, WeakArrayList src,
|
H A D | property-array-inl.h | 126 void PropertyArray::CopyElements(Isolate* isolate, int dst_index, in CopyElements() function in v8::internal::PropertyArray
|
H A D | fixed-array-inl.h | 228 void FixedArray::CopyElements(Isolate* isolate, int dst_index, FixedArray src, in CopyElements() function in v8::internal::FixedArray 466 void WeakFixedArray::CopyElements(Isolate* isolate, int dst_index, in CopyElements() function in v8::internal::WeakFixedArray 501 void WeakArrayList::CopyElements(Isolate* isolate, int dst_index, in CopyElements() function in v8::internal::WeakArrayList
|
H A D | scope-info.cc | 600 void ScopeInfo::CopyElements(Isolate* isolate, int dst_index, ScopeInfo src, in CopyElements() function in v8::internal::ScopeInfo 633 scope_info->CopyElements(isolate, 0, *original, 0, kVariablePartIndex, in RecreateWithBlockList() 642 scope_info->CopyElements( in RecreateWithBlockList() 647 scope_info->CopyElements(isolate, scope_info->LocalsBlockListIndex() + 1, in RecreateWithBlockList()
|
H A D | scope-info.h | 337 void CopyElements(Isolate* isolate, int dst_index, ScopeInfo src,
|
H A D | osr-optimized-code-cache.cc | 100 new_osr_cache->CopyElements(isolate, 0, *osr_cache, 0, in Compact()
|
H A D | elements.cc | 190 // CopyElements, it copies all of elements from source after source_start to 226 to.CopyElements(isolate, to_start, from, from_start, copy_size, in CopyObjectToObjectElements() 270 // See ElementsAccessorBase::CopyElements() for details. 982 void CopyElements(JSObject from_holder, uint32_t from_start, 1008 void CopyElements(Isolate* isolate, Handle<FixedArrayBase> source, 1027 Object CopyElements(Handle<Object> source, Handle<JSObject> destination, 2505 // See ElementsAccessor::CopyElements() for details. 5339 accessor->CopyElements(array, 0, from_kind, storage, insertion_index, len);
|
H A D | objects.cc | 5132 new_infos->CopyElements(isolate, 0, *old_infos, 0, old_length, in FindWebSnapshotSharedFunctionInfo()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-typedarray.cc | 43 return accessor->CopyElements(source, target, length, 0); in RUNTIME_FUNCTION() 184 return accessor->CopyElements(source, target, length, offset); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 2031 result.CopyElements(isolate(), 0, *src, 0, len, mode); in CopyArrayWithMap() 2049 result.CopyElements(isolate(), 0, *src, 0, old_len, mode); in CopyArrayAndGrow() 2108 raw.CopyElements(isolate(), 0, *src, 0, old_len, mode); in CopyWeakArrayListAndGrow() 2156 result.CopyElements(isolate(), 0, *array, 0, new_len, mode); in CopyFixedArrayUpTo()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 4438 // We can use CopyElements (memcpy) because we don't need to replace or 4439 // convert any values. Since {to_elements} is in new-space, CopyElements 4443 CopyElements(to_kind, to_elements, IntPtrConstant(0), source, 4622 CopyElements(kind, to_elements, IntPtrConstant(0), source, 4912 void CodeStubAssembler::CopyElements(ElementsKind kind,
|
H A D | code-stub-assembler.h | 2193 void CopyElements(ElementsKind kind, TNode<FixedArrayBase> dst_elements,
|