Home | History | Annotate | Download | only in v8

Lines Matching defs:Key

63     static KeyType Key(Iterator& iter) { return iter->key; }
65 Impl* impl, KeyType key, v8::PersistentContainerValue value)
67 v8::PersistentContainerValue oldValue = Get(impl, key);
68 impl->set(key, value);
71 static v8::PersistentContainerValue Get(const Impl* impl, KeyType key)
73 return impl->get(key);
76 static v8::PersistentContainerValue Remove(Impl* impl, KeyType key)
78 return impl->take(key);
87 static WeakCallbackDataType* WeakCallbackParameter(MapType* map, KeyType key, const v8::Local<ValueType>& value)
109 static void Dispose(v8::Isolate* isolate, v8::UniquePersistent<ValueType> value, KeyType key) { }