Lines Matching refs:properties
1116 ACCESSORS(JSObject, properties, FixedArray, kPropertiesOffset)
1197 // Make sure to adjust for the number of in-object properties. These
1198 // properties do contribute to the size, but are not internal fields.
1207 // properties are at the end of the object. Therefore there is no need
1216 // properties are at the end of the object. Therefore there is no need
1224 // Access fast-case object properties at index. The use of these routines
1225 // is needed to correctly distinguish between properties stored in-object and
1226 // properties stored in the properties array.
1228 // Adjust for the number of properties
1234 ASSERT(index < properties()->length());
1235 return properties()->get(index);
1241 // Adjust for the number of properties stored in the object.
1248 ASSERT(index < properties()->length());
1249 properties()->set(index, value);
1256 // Adjust for the number of properties stored in the object.
1267 // Adjust for the number of properties stored in the object.
1295 return !properties()->IsDictionary();
2773 return StringDictionary::cast(properties());