Lines Matching defs:object_id
2202 uint32_t object_id;
2203 if (!deserializer_.ReadUint32(&object_id) || object_id > kMaxItemCount) {
2207 if (object_id < current_object_count_) {
2208 return objects_.get(object_id);
2211 return AddDeferredReference(container, index, OBJECT_ID, object_id);
2274 uint32_t object_id;
2276 if (!deserializer_.ReadUint32(&object_id) || object_id > kMaxItemCount + 1) {
2280 if (object_id == 0) {
2284 --object_id;
2285 if (object_id < current_object_count_) {
2287 JSReceiver::cast(objects_.get(object_id)))) {
2293 AddDeferredReference(function, 0, OBJECT_ID, object_id);