Searched refs:weak_collection (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/runtime/ |
D | runtime-collections.cc | 80 Handle<JSWeakCollection> weak_collection = args.at<JSWeakCollection>(0); in RUNTIME_FUNCTION() local 88 EphemeronHashTable::cast(weak_collection->table()), isolate); in RUNTIME_FUNCTION() 95 bool was_present = JSWeakCollection::Delete(weak_collection, key, hash); in RUNTIME_FUNCTION() 102 Handle<JSWeakCollection> weak_collection = args.at<JSWeakCollection>(0); in RUNTIME_FUNCTION() local 111 EphemeronHashTable::cast(weak_collection->table()), isolate); in RUNTIME_FUNCTION() 118 JSWeakCollection::Set(weak_collection, key, value, hash); in RUNTIME_FUNCTION() 119 return *weak_collection; in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/objects/ |
D | objects.cc | 6498 void JSWeakCollection::Initialize(Handle<JSWeakCollection> weak_collection, in Initialize() argument 6501 weak_collection->set_table(*table); in Initialize() 6504 void JSWeakCollection::Set(Handle<JSWeakCollection> weak_collection, in Set() argument 6509 EphemeronHashTable::cast(weak_collection->table()), in Set() 6510 weak_collection->GetIsolate()); in Set() 6511 DCHECK(table->IsKey(weak_collection->GetReadOnlyRoots(), *key)); in Set() 6513 weak_collection->GetIsolate(), table, key, value, hash); in Set() 6514 weak_collection->set_table(*new_table); in Set() 6521 bool JSWeakCollection::Delete(Handle<JSWeakCollection> weak_collection, in Delete() argument 6525 EphemeronHashTable::cast(weak_collection->table()), in Delete() [all …]
|