Lines Matching refs:Space
111 // Space is the abstract superclass for all allocation spaces that are not
113 class V8_EXPORT_PRIVATE Space : public BaseSpace {
115 Space(Heap* heap, AllocationSpace id, FreeList* free_list)
125 Space(const Space&) = delete;
126 Space& operator=(const Space&) = delete;
129 ExternalBackingStoreType type, Space* from, Space* to, size_t amount);
131 ~Space() override {
169 // Returns amount of off-heap memory in-use by objects in this Space.
463 class SpaceWithLinearArea : public Space {
467 : Space(heap, id, free_list), allocation_info_(allocation_info) {}