Lines Matching defs:storage
805 Handle<FixedArray> storage, KeyCollectionMode mode,
808 int length = storage->length();
832 storage->set(properties, Name::cast(key));
838 storage->set(properties, Smi::FromInt(i.as_int()));
853 Handle<FixedArray> storage, KeyCollectionMode mode,
857 CommonCopyEnumKeysTo<Dictionary>(isolate, dictionary, storage, mode,
860 int length = storage->length();
864 FixedArray raw_storage = *storage;
868 AtomicSlot start(storage->GetFirstElementAddress());
878 Handle<FixedArray> storage, KeyCollectionMode mode,
880 CommonCopyEnumKeysTo<SwissNameDictionary>(isolate, dictionary, storage, mode,
884 // adds entries to |storage| in the dict's insertion order
885 // Further, the template argument true above means that |storage|
900 Handle<FixedArray> storage = isolate->factory()->NewFixedArray(length);
901 CopyEnumKeysTo(isolate, dictionary, storage, mode, accumulator);
902 return storage;