Lines Matching refs:properties
1214 ACCESSORS(JSObject, properties, FixedArray, kPropertiesOffset)
1472 // Make sure to adjust for the number of in-object properties. These
1473 // properties do contribute to the size, but are not internal fields.
1488 // properties are at the end of the object. Therefore there is no need
1497 // properties are at the end of the object. Therefore there is no need
1508 // properties are at the end of the object. Therefore there is no need
1515 // Access fast-case object properties at index. The use of these routines
1516 // is needed to correctly distinguish between properties stored in-object and
1517 // properties stored in the properties array.
1519 // Adjust for the number of properties stored in the object.
1525 ASSERT(index < properties()->length());
1526 return properties()->get(index);
1532 // Adjust for the number of properties stored in the object.
1539 ASSERT(index < properties()->length());
1540 properties()->set(index, value);
1547 // Adjust for the number of properties stored in the object.
1555 // Adjust for the number of properties stored in the object.
1566 // Adjust for the number of properties stored in the object.
1602 return !properties()->IsDictionary();
1607 // Allow extra fast properties if the object has more than
1608 // kMaxFastProperties in-object properties. When this is the case,
4399 return StringDictionary::cast(properties());