Lines Matching refs:table
354 for (InternalTable& table : tables_) { in WriteToMemory()
355 for (GcRoot<mirror::String>& string : table.set_) { in WriteToMemory()
366 for (InternalTable& table : tables_) { in Remove()
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()
378 for (InternalTable& table : tables_) { in Find()
379 auto it = table.set_.find(GcRoot<mirror::String>(s)); in Find()
380 if (it != table.set_.end()) { in Find()
389 for (InternalTable& table : tables_) { in Find()
390 auto it = table.set_.find(string); in Find()
391 if (it != table.set_.end()) { in Find()
412 for (InternalTable& table : tables_) { in VisitRoots()
413 for (auto& intern : table.set_) { in VisitRoots()
420 for (InternalTable& table : tables_) { in SweepWeaks()
421 SweepWeaks(&table.set_, visitor); in SweepWeaks()
443 [](size_t sum, const InternalTable& table) { in Size() argument
444 return sum + table.Size(); in Size()