Home | History | Annotate | Download | only in linker

Lines Matching full:interned

1242     // If we found it in the runtime intern table it could either be in the boot image or interned
1356 // Need to check if the string is already interned in another image info so that we don't have
1358 mirror::String* interned = FindInternedString(obj->AsString());
1359 if (interned == nullptr) {
1361 interned =
1363 DCHECK_EQ(interned, obj);
1500 // Always return the interned string if there exists one.
1501 mirror::String* interned = FindInternedString(obj->AsString());
1502 if (interned != nullptr) {
1503 return interned;
1714 // Special case interned strings to put them in the image they are likely to be resolved from.
1787 CHECK_EQ(intern_table->WeakSize(), 0u) << " should have strong interned all the strings";
1907 // For boot image, round up to the page boundary to separate the interned strings and
1914 // Calculate the size of the interned strings.