Home | History | Annotate | Download | only in src

Lines Matching refs:properties

1608   // Allocate the hidden symbol which is used to identify the hidden properties
2348 // Set the two properties.
2366 // First create a new map with the size and number of in-object properties
2388 // cannot be constructed without having these properties. Guard by
2418 FixedArray* properties,
2420 obj->set_properties(properties);
2443 // Allocate the backing storage for the properties.
2449 Object* properties = AllocateFixedArray(prop_size, pretenure);
2450 if (properties->IsFailure()) return properties;
2461 FixedArray::cast(properties),
2489 // Make sure no field properties are described in the initial map.
2490 // This guarantees us that normalizing the properties does not
2544 // Make sure result is a global object with properties in dictionary.
2588 FixedArray* properties = FixedArray::cast(source->properties());
2595 // Update properties if necessary.
2596 if (properties->length() > 0) {
2597 Object* prop = CopyFixedArray(properties);
2625 // Allocate the backing storage for the properties.
2627 Object* properties = AllocateFixedArray(prop_size, TENURED);
2628 if (properties->IsFailure()) return properties;
2634 InitializeJSObjectFromMap(object, FixedArray::cast(properties), map);