Lines Matching refs:set_
355 for (GcRoot<mirror::String>& string : table.set_) { in WriteToMemory()
360 table_to_write = &tables_.back().set_; in WriteToMemory()
367 auto it = table.set_.find(GcRoot<mirror::String>(s)); in Remove()
368 if (it != table.set_.end()) { in Remove()
369 table.set_.erase(it); in Remove()
379 auto it = table.set_.find(GcRoot<mirror::String>(s)); in Find()
380 if (it != table.set_.end()) { in Find()
390 auto it = table.set_.find(string); in Find()
391 if (it != table.set_.end()) { in Find()
406 tables_.back().set_.insert(GcRoot<mirror::String>(s)); in Insert()
413 for (auto& intern : table.set_) { in VisitRoots()
421 SweepWeaks(&table.set_, visitor); in SweepWeaks()
464 initial_table.set_.SetLoadFactor(runtime->GetHashTableMinLoadFactor(), in Table()