Home | History | Annotate | Download | only in src

Lines Matching full:property_dictionary

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