Lines Matching refs:property_dictionary
1405 Handle<GlobalDictionary> property_dictionary(object->global_dictionary()); in SetNormalizedProperty() local
1407 int entry = property_dictionary->FindEntry(name); in SetNormalizedProperty()
1415 property_dictionary = in SetNormalizedProperty()
1416 GlobalDictionary::Add(property_dictionary, name, value, details); in SetNormalizedProperty()
1417 object->set_properties(*property_dictionary); in SetNormalizedProperty()
1419 PropertyCell::UpdateCell(property_dictionary, entry, value, details); in SetNormalizedProperty()
1422 Handle<NameDictionary> property_dictionary(object->property_dictionary()); in SetNormalizedProperty() local
1424 int entry = property_dictionary->FindEntry(name); in SetNormalizedProperty()
1426 property_dictionary = in SetNormalizedProperty()
1427 NameDictionary::Add(property_dictionary, name, value, details); in SetNormalizedProperty()
1428 object->set_properties(*property_dictionary); in SetNormalizedProperty()
1430 PropertyDetails original_details = property_dictionary->DetailsAt(entry); in SetNormalizedProperty()
1434 property_dictionary->SetEntry(entry, name, value, details); in SetNormalizedProperty()
2685 Handle<NameDictionary> dict(object->property_dictionary()); in AddSlowProperty()
5658 Handle<NameDictionary> dictionary(object->property_dictionary()); in MigrateSlowToFast()
6213 Handle<NameDictionary> dictionary(object->property_dictionary()); in DeleteNormalizedProperty()
7215 Handle<NameDictionary> dict(proxy->property_dictionary()); in AddPrivateProperty()
7933 ApplyAttributesToDictionary(object->property_dictionary(), attrs); in PreventExtensionsWithTransition()
8551 Handle<NameDictionary> dictionary(object->property_dictionary()); in GetEnumPropertyKeys()
9162 return property_dictionary()->SlowReverseLookup(value); in SlowReverseLookup()
16429 NameDictionary::CollectKeysTo(handle(property_dictionary()), keys, filter); in CollectOwnPropertyNames()