Lines Matching defs:raw_key
1589 InternalIndex entry, Object raw_key,
1591 DCHECK(raw_key.IsNumber());
1592 DCHECK_LE(raw_key.Number(), kMaxUInt32);
1596 return static_cast<uint32_t>(raw_key.Number());
1604 Object raw_key = dictionary->KeyAt(isolate, entry);
1605 if (!dictionary->IsKey(ReadOnlyRoots(isolate), raw_key)) return kMaxUInt32;
1606 return FilterKey(dictionary, entry, raw_key, filter);
1623 Object raw_key = dictionary->KeyAt(isolate, i);
1624 if (!dictionary->IsKey(roots, raw_key)) continue;
1625 uint32_t key = FilterKey(dictionary, i, raw_key, filter);
1627 // This might allocate, but {raw_key} is not used afterwards.
1628 keys->AddShadowingKey(raw_key, &allow_gc);
1631 elements->set(insertion_index, raw_key);