Lines Matching refs:LiveObjectList
57 // The LiveObjectList is both a mechanism for tracking a live capture of
62 // LiveObjectList (and lol) is used to describe both the mechanism and the
75 class LiveObjectList {
123 explicit LiveObjectList(LiveObjectList* prev, int capacity);
124 ~LiveObjectList();
167 LiveObjectList* prev() { return prev_; }
168 LiveObjectList* next() { return next_; }
172 static LiveObjectList* last() { return last_; }
174 inline static LiveObjectList* FindLolForId(int id, LiveObjectList* start_lol);
194 inline static LiveObjectList::Element*
195 FindElementFor(T (*GetValue)(LiveObjectList::Element*), T key);
201 LiveObjectList* prev_;
202 LiveObjectList* next_;
212 static LiveObjectList* first_;
213 static LiveObjectList* last_;
224 // Helper class for updating the LiveObjectList HeapObject pointers.
259 LiveObjectList::NullifyNonLivePointer(reinterpret_cast<HeapObject**>(p));
268 class LiveObjectList {