Home
last modified time | relevance | path

Searched refs:CFX_V8ArrayBufferAllocator (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/testing/
Djs_embedder_test.h15 class CFX_V8ArrayBufferAllocator; variable
30 std::unique_ptr<CFX_V8ArrayBufferAllocator> m_pArrayBufferAllocator;
Dxfa_js_embedder_test.h17 class CFX_V8ArrayBufferAllocator; variable
42 std::unique_ptr<CFX_V8ArrayBufferAllocator> array_buffer_allocator_;
Djs_embedder_test.cpp12 pdfium::MakeUnique<CFX_V8ArrayBufferAllocator>()) {} in JSEmbedderTest()
Dxfa_js_embedder_test.cpp19 pdfium::MakeUnique<CFX_V8ArrayBufferAllocator>()) {} in XFAJSEmbedderTest()
/external/pdfium/fxjs/
Dcfx_v8_unittest.h13 class CFX_V8ArrayBufferAllocator; variable
34 std::unique_ptr<CFX_V8ArrayBufferAllocator> array_buffer_allocator_;
Dcfx_v8.cpp201 void* CFX_V8ArrayBufferAllocator::Allocate(size_t length) { in Allocate()
208 void* CFX_V8ArrayBufferAllocator::AllocateUninitialized(size_t length) { in AllocateUninitialized()
215 void CFX_V8ArrayBufferAllocator::Free(void* data, size_t length) { in Free()
Dcfx_v8.h67 class CFX_V8ArrayBufferAllocator final : public v8::ArrayBuffer::Allocator {
Dcfxjs_engine.cpp27 CFX_V8ArrayBufferAllocator* g_arrayBufferAllocator = nullptr;
309 g_arrayBufferAllocator = new CFX_V8ArrayBufferAllocator(); in FXJS_GetIsolate()
Dcfx_v8_unittest.cpp27 array_buffer_allocator_ = pdfium::MakeUnique<CFX_V8ArrayBufferAllocator>(); in SetUp()