Lines Matching refs:fSlots
39 fSlots.reset(that.fCapacity);
41 fSlots[i] = that.fSlots[i];
51 fSlots = std::move(that.fSlots);
95 Slot& s = fSlots[index]; in find()
124 Slot& s = fSlots[index]; in remove()
141 if (fSlots[i].has_value()) { in foreach()
142 fn(&*fSlots[i]); in foreach()
151 if (fSlots[i].has_value()) { in foreach()
152 fn(*fSlots[i]); in foreach()
213 if (fSlots[i].has_value()) { in firstPopulatedSlot()
223 if (fSlots[i].has_value()) { in nextPopulatedSlot()
232 SkASSERT(fSlots[i].has_value()); in slot()
233 return &*fSlots[i]; in slot()
242 Slot& s = fSlots[index]; in uncheckedSet()
268 SkAutoTArray<Slot> oldSlots = std::move(fSlots); in resize()
269 fSlots = SkAutoTArray<Slot>(capacity); in resize()
285 Slot& emptySlot = fSlots[index]; in removeSlot()
296 Slot& s = fSlots[index]; in removeSlot()
307 Slot& moveFrom = fSlots[index]; in removeSlot()
408 SkAutoTArray<Slot> fSlots; variable