Lines Matching refs:properties
988 // Find all the indexed properties.
993 // Get names for indexed interceptor properties.
1002 // Find all the named properties.
1007 // Get names for named interceptor properties if any.
1023 // properties like toString if(propertySet["toString"]) will always
1038 function ObjectCreate(proto, properties) {
1044 if (!IS_UNDEFINED(properties)) ObjectDefineProperties(obj, properties);
1058 // non-own properties as it does (or non-enumerable ones, as it doesn't?).
1090 function GetOwnEnumerablePropertyNames(properties) {
1092 for (var key in properties) {
1093 if (%HasLocalProperty(properties, key)) {
1102 function ObjectDefineProperties(obj, properties) {
1106 properties);
1133 // TODO(rossberg): What about length and other properties? Not specified.
1629 // We already have caller and arguments properties on functions,