Lines Matching refs:properties
1286 ACCESSORS(JSObject, properties, FixedArray, kPropertiesOffset)
1392 // Make sure to adjust for the number of in-object properties. These
1393 // properties do contribute to the size, but are not internal fields.
1408 // properties are at the end of the object. Therefore there is no need
1417 // properties are at the end of the object. Therefore there is no need
1425 // Access fast-case object properties at index. The use of these routines
1426 // is needed to correctly distinguish between properties stored in-object and
1427 // properties stored in the properties array.
1429 // Adjust for the number of properties stored in the object.
1435 ASSERT(index < properties()->length());
1436 return properties()->get(index);
1442 // Adjust for the number of properties stored in the object.
1449 ASSERT(index < properties()->length());
1450 properties()->set(index, value);
1457 // Adjust for the number of properties stored in the object.
1465 // Adjust for the number of properties stored in the object.
1476 // Adjust for the number of properties stored in the object.
1496 return !properties()->IsDictionary();
1501 // Allow extra fast properties if the object has more than
1502 // kMaxFastProperties in-object properties. When this is the case,
3736 return StringDictionary::cast(properties());