HomeSort by relevance Sort by last modified time
    Searched defs:LiveObjectList (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
liveobjectlist.h 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 {
122 explicit LiveObjectList(LiveObjectList* prev, int capacity);
123 ~LiveObjectList();
166 LiveObjectList* prev() { return prev_; }
167 LiveObjectList* next() { return next_; }
171 static LiveObjectList* last() { return last_; }
173 inline static LiveObjectList* FindLolForId(int id, LiveObjectList* start_lol)
    [all...]
liveobjectlist.cc 41 #include "liveobjectlist-inl.h"
354 LolIterator(LiveObjectList* older, LiveObjectList* newer)
403 inline void SetCurrent(LiveObjectList* new_curr) {
412 LiveObjectList* older_;
413 LiveObjectList* newer_;
414 LiveObjectList* curr_;
415 LiveObjectList::Element* elements_;
423 LolForwardIterator(LiveObjectList* first, LiveObjectList* last
    [all...]

Completed in 122 milliseconds