Lines Matching refs:internalized
344 // InternalizedStringKey carries a string/internalized-string object as key.
350 // internalized the key, in which case StringTable::LookupKey will perform a
351 // redundant lookup and return the already internalized copy.
376 // We can see already internalized strings here only when sharing the
400 // Otherwise allocate a new internalized string.
411 // is another thread migrated the string to internalized already.
418 // We prepared an internalized copy for the string or the string was already
419 // internalized.
439 // and internalized strings are in the shared heap.
458 // For lookup misses, the internalized string map is the same map in RO space
498 // for strong consistency of internalized string equality implying reference
680 String internalized = String::cast(string_table_data->Get(isolate, entry));
681 // string can be internalized here, if another thread internalized it.
682 // If we found and entry in the string table and string is not internalized,
683 // there is no way that it can transition to internalized later on. So a last
686 string.MakeThin(isolate, internalized);
690 return internalized.ptr();
698 // string could be internalized, if the string table is shared and another
699 // thread internalized it.