Home | History | Annotate | Download | only in src

Lines Matching refs:lol

79     LiveObjectList* lol = start_lol;
80 while (lol != NULL) {
81 if (lol->id() == id) {
82 return lol;
84 lol = lol->prev_;
91 // Iterates the elements in every lol and returns the one that matches the
96 LiveObjectList *lol = last();
97 while (lol != NULL) {
98 Element* elements = lol->elements_;
99 for (int i = 0; i < lol->obj_count_; i++) {
105 lol = lol->prev_;