Home | History | Annotate | Download | only in animator

Lines Matching refs:list

61 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list,
64 *list = &fDrawList;
66 return SearchForMatch(match, list, parent, found, grandList);
79 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list,
82 for (int index = 0; index < (*list)->count(); index++) {
83 SkDrawable* draw = (**list)[index];
90 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
101 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
108 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list,
113 SkTDDrawableArray* saveList = *list;
114 int groupIndex = group->findGroup(match, list, parent, found, grandList);
120 *list = saveList;