Home
last modified time | relevance | path

Searched refs:memento (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/cctest/
Dtest-mementos.cc48 AllocationMemento* memento = in SetUpNewSpaceWithPoisonedMementoAtTop() local
50 memento->set_map_no_write_barrier(heap->allocation_memento_map()); in SetUpNewSpaceWithPoisonedMementoAtTop()
51 memento->set_allocation_site( in SetUpNewSpaceWithPoisonedMementoAtTop()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DComponentResultsView.java233 public void init(IViewSite site, IMemento memento) throws PartInitException { in init() argument
234 super.init(site, memento); in init()
235 this.viewState = memento; in init()
404 public void saveState(IMemento memento) {
405 super.saveState(memento);
406memento.putBoolean(IPerformancesConstants.PRE_FULL_LINE_SELECTION, this.fullLineSelection.isChecke…
DPerformancesView.java422 public void init(IViewSite site, IMemento memento) throws PartInitException { in init() argument
423 super.init(site, memento); in init()
424 this.viewState = memento; in init()
634 public void saveState(IMemento memento) { in saveState() argument
635 super.saveState(memento); in saveState()
636memento.putBoolean(IPerformancesConstants.PRE_FILTER_BASELINE_BUILDS, this.filterBaselineBuilds.is… in saveState()
DComponentsView.java400 public void saveState(IMemento memento) { in saveState() argument
402 memento.putString(IPerformancesConstants.PRE_WRITE_RESULTS_DIR, this.resultsDir.getPath()); in saveState()
404 super.saveState(memento); in saveState()
/external/v8/src/heap/
Dheap-inl.h504 AllocationMemento* memento = AllocationMemento::cast(candidate); in FindAllocationMemento() local
505 if (!memento->IsValid()) return NULL; in FindAllocationMemento()
506 return memento; in FindAllocationMemento()
516 AllocationMemento* memento = FindAllocationMemento(object); in UpdateAllocationSite() local
517 if (memento == nullptr) return; in UpdateAllocationSite()
519 AllocationSite* key = memento->GetAllocationSite(); in UpdateAllocationSite()
Dheap.cc3421 void Heap::InitializeAllocationMemento(AllocationMemento* memento, in InitializeAllocationMemento() argument
3423 memento->set_map_no_write_barrier(allocation_memento_map()); in InitializeAllocationMemento()
3425 memento->set_allocation_site(allocation_site, SKIP_WRITE_BARRIER); in InitializeAllocationMemento()
Dheap.h1759 void InitializeAllocationMemento(AllocationMemento* memento,
/external/v8/src/
Dobjects.cc16040 AllocationMemento* memento = heap->FindAllocationMemento(*object); in UpdateAllocationSite() local
16041 if (memento == NULL) return; in UpdateAllocationSite()
16044 site = handle(memento->GetAllocationSite()); in UpdateAllocationSite()