Home
last modified time | relevance | path

Searched refs:ObjectCacheIndexMap (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.h177 bool InsertIntoIndexMap(ObjectCacheIndexMap& map, HeapObject heap_object,
240 ObjectCacheIndexMap external_objects_ids_;
246 ObjectCacheIndexMap string_ids_;
247 ObjectCacheIndexMap map_ids_;
248 ObjectCacheIndexMap context_ids_;
249 ObjectCacheIndexMap function_ids_;
250 ObjectCacheIndexMap class_ids_;
251 ObjectCacheIndexMap array_ids_;
252 ObjectCacheIndexMap object_ids_;
Dweb-snapshot.cc423 bool WebSnapshotSerializer::InsertIntoIndexMap(ObjectCacheIndexMap& map, in InsertIntoIndexMap()
/third_party/node/deps/v8/src/snapshot/
Dserializer.h135 class ObjectCacheIndexMap {
137 explicit ObjectCacheIndexMap(Heap* heap) : map_(heap), next_index_(0) {} in ObjectCacheIndexMap() function
138 ObjectCacheIndexMap(const ObjectCacheIndexMap&) = delete;
139 ObjectCacheIndexMap& operator=(const ObjectCacheIndexMap&) = delete;
Droots-serializer.h56 ObjectCacheIndexMap object_cache_index_map_;
Dserializer.cc1330 Handle<FixedArray> ObjectCacheIndexMap::Values(Isolate* isolate) { in Values()