Lines Matching defs:Slot
69 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); }
95 Slot& s = fSlots[index];
124 Slot& s = fSlots[index];
242 Slot& s = fSlots[index];
268 SkAutoTArray<Slot> oldSlots = std::move(fSlots);
269 fSlots = SkAutoTArray<Slot>(capacity);
272 Slot& s = oldSlots[i];
285 Slot& emptySlot = fSlots[index];
296 Slot& s = fSlots[index];
307 Slot& moveFrom = fSlots[index];
323 struct Slot {
324 Slot() = default;
325 ~Slot() { this->reset(); }
327 Slot(const Slot& that) { *this = that; }
328 Slot& operator=(const Slot& that) {
350 Slot(Slot&& that) { *this = std::move(that); }
351 Slot& operator=(Slot&& that) {
378 Slot& emplace(T&& v, uint32_t h) {
408 SkAutoTArray<Slot> fSlots;