Home | History | Annotate | Download | only in cctest

Lines Matching defs:isolate

104 // Temporarily sets a given allocator in an isolate.
107 TestMemoryAllocatorScope(Isolate* isolate, MemoryAllocator* allocator)
108 : isolate_(isolate),
109 old_allocator_(isolate->memory_allocator_) {
110 isolate->memory_allocator_ = allocator;
118 Isolate* isolate_;
129 Isolate* isolate = Isolate::Current();
130 isolate->InitializeLoggingAndCounters();
131 Heap* heap = isolate->heap();
132 CHECK(isolate->heap()->ConfigureHeapDefault());
134 MemoryAllocator* memory_allocator = new MemoryAllocator(isolate);
179 Isolate* isolate = Isolate::Current();
180 isolate->InitializeLoggingAndCounters();
181 Heap* heap = isolate->heap();
183 MemoryAllocator* memory_allocator = new MemoryAllocator(isolate);
186 TestMemoryAllocatorScope test_scope(isolate, memory_allocator);
209 Isolate* isolate = Isolate::Current();
210 isolate->InitializeLoggingAndCounters();
211 Heap* heap = isolate->heap();
213 MemoryAllocator* memory_allocator = new MemoryAllocator(isolate);
216 TestMemoryAllocatorScope test_scope(isolate, memory_allocator);