Lines Matching refs:set_
84 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(old_ref), hash); in VisitRoots()
85 if (it != table.set_.end()) { in VisitRoots()
326 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(s), hash); in Remove()
327 if (it != table.set_.end()) { in Remove()
328 table.set_.erase(it); in Remove()
342 DCHECK(table.set_.FindWithHash(GcRoot<mirror::String>(s), hash) == table.set_.end()); in Find()
347 auto it = table.set_.FindWithHash(GcRoot<mirror::String>(s), hash); in Find()
348 if (it != table.set_.end()) { in Find()
361 auto it = table.set_.FindWithHash(string, hash); in Find()
362 if (it != table.set_.end()) { in Find()
372 const UnorderedSet& last_set = tables_.back().set_; in AddNewTable()
374 new_table.set_.SetLoadFactor(last_set.GetMinLoadFactor(), last_set.GetMaxLoadFactor()); in AddNewTable()
382 tables_.back().set_.PutWithHash(GcRoot<mirror::String>(s), hash); in Insert()
389 for (auto& intern : table.set_) { in VisitRoots()
397 SweepWeaks(&table.set_, visitor); in SweepWeaks()
443 initial_table.set_.SetLoadFactor(runtime->GetHashTableMinLoadFactor(), in Table()