Lines Matching refs:entry
884 InternalIndex entry) {
887 DCHECK(entry.is_found());
895 Handle<PropertyCell> cell(dictionary->CellAt(entry), isolate);
898 GlobalDictionary::DeleteEntry(isolate, dictionary, entry);
908 dictionary = SwissNameDictionary::DeleteEntry(isolate, dictionary, entry);
913 dictionary = NameDictionary::DeleteEntry(isolate, dictionary, entry);
2665 InternalIndex entry = dictionary->FindEntry(isolate, roots, name, hash);
2667 if (entry.is_not_found()) {
2678 PropertyCell::PrepareForAndSetValue(isolate, dictionary, entry, value,
2680 DCHECK_EQ(dictionary->CellAt(entry).value(), *value);
2686 InternalIndex entry = dictionary->FindEntry(isolate, *name);
2687 if (entry.is_not_found()) {
2694 dictionary->ValueAtPut(entry, *value);
2695 dictionary->DetailsAtPut(entry, details);
2699 InternalIndex entry = dictionary->FindEntry(isolate, name);
2700 if (entry.is_not_found()) {
2707 PropertyDetails original_details = dictionary->DetailsAt(entry);
2711 dictionary->SetEntry(entry, *name, *value, details);
5387 InternalIndex entry = dictionary->FindEntry(isolate, name);
5388 if (entry.is_not_found()) return;
5390 Handle<PropertyCell> cell(dictionary->CellAt(entry), isolate);
5394 PropertyCell::InvalidateAndReplaceEntry(isolate, dictionary, entry, details,