Lines Matching defs:inobject
2985 // properties, unused fields, inobject properties.
2987 // * Copy inobject properties from the backing store back into the object.
2989 // frees inobject properties that moved to the backing store.
2991 // to temporarily store the inobject properties.
3059 int inobject = new_map->GetInObjectProperties();
3064 if (!old_map->InstancesNeedRewriting(*new_map, number_of_fields, inobject,
3072 int external = total_size - inobject;
3075 // We use this array to temporarily store the inobject properties.
3077 isolate->factory()->NewFixedArray(inobject);
3127 if (target_index < inobject) {
3130 array->set(target_index - inobject, *value);
3145 if (target_index < inobject) {
3148 array->set(target_index - inobject, *value);
3157 // Copy (real) inobject properties. If necessary, stop at number_of_fields to
3159 int limit = std::min(inobject, number_of_fields);
3395 int inobject = map->GetInObjectProperties();
3398 int external = total_size - inobject;
3400 // have external properties, but is also necessary if we only have inobject
3405 Handle<FixedArray> storage = isolate->factory()->NewFixedArray(inobject);
3423 for (int i = 0; i < inobject; i++) {
3767 // There is enough inobject space for all fields (including unused).