Lines Matching refs:strong
59 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n";
72 // The GC moved a root in the log. Need to search the strong interns and update the
231 // Check the strong table for a match.
232 ObjPtr<mirror::String> strong = LookupStrongLocked(s);
233 if (strong != nullptr) {
234 return strong;
253 // There is no match in the strong table, check the weak table.
257 // A match was found in the weak table. Promote to the strong table.
263 // No match in the strong table or the weak table. Insert into the strong / weak table.