Lines Matching refs:ArrayBuffer
66 class ShellArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
77 class MockArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
358 ArrayBuffer::Allocator* Shell::array_buffer_allocator;
1685 Global<ArrayBuffer> handle;
1720 Local<v8::ArrayBuffer> buffer = ArrayBuffer::New(isolate, data->data, length); in ReadBuffer()
2026 ArrayBuffer::Contents& contents = array_buffer_contents_[i]; in ~SerializationData()
2047 const ArrayBuffer::Contents& contents) { in WriteArrayBufferContents()
2077 void SerializationData::ReadArrayBufferContents(ArrayBuffer::Contents* contents, in ReadArrayBufferContents()
2085 array_buffer_contents_[index] = ArrayBuffer::Contents(); in ReadArrayBufferContents()
2521 Local<ArrayBuffer> array_buffer = Local<ArrayBuffer>::Cast(value); in SerializeValue()
2534 ArrayBuffer::Contents contents = array_buffer->IsExternal() in SerializeValue()
2540 ArrayBuffer::Contents contents = array_buffer->GetContents(); in SerializeValue()
2675 Local<ArrayBuffer> array_buffer = ArrayBuffer::New(isolate, byte_length); in DeserializeValue()
2676 ArrayBuffer::Contents contents = array_buffer->GetContents(); in DeserializeValue()
2683 ArrayBuffer::Contents contents; in DeserializeValue()
2685 result = ArrayBuffer::New(isolate, contents.Data(), contents.ByteLength(), in DeserializeValue()