HomeSort by relevance Sort by last modified time
    Searched refs:PersistentContainerValue (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8PersistentValueVector.h 42 typedef Vector<v8::PersistentContainerValue> Impl;
43 static void Append(Impl* impl, v8::PersistentContainerValue value)
55 static v8::PersistentContainerValue Get(const Impl* impl, size_t i)
V8PersistentValueMap.h 52 typedef HashMap<KeyType, v8::PersistentContainerValue> Impl;
59 static v8::PersistentContainerValue Value(Iterator& iter)
64 static v8::PersistentContainerValue Set(
65 Impl* impl, KeyType key, v8::PersistentContainerValue value)
67 v8::PersistentContainerValue oldValue = Get(impl, key);
71 static v8::PersistentContainerValue Get(const Impl* impl, KeyType key)
76 static v8::PersistentContainerValue Remove(Impl* impl, KeyType key)
DOMWrapperMap.h 95 typedef HashMap<KeyType*, v8::PersistentContainerValue> Impl;
102 static v8::PersistentContainerValue Value(Iterator& iter)
107 static v8::PersistentContainerValue Set(
108 Impl* impl, KeyType* key, v8::PersistentContainerValue value)
110 v8::PersistentContainerValue oldValue = Get(impl, key);
114 static v8::PersistentContainerValue Get(const Impl* impl, KeyType* key)
119 static v8::PersistentContainerValue Remove(Impl* impl, KeyType* key)
  /external/chromium_org/v8/include/
v8-util.h 21 typedef uintptr_t PersistentContainerValue;
39 typedef std::map<K, PersistentContainerValue> Impl;
48 static PersistentContainerValue Value(Iterator it) { return it->second; }
49 static PersistentContainerValue Set(Impl* impl, K key,
50 PersistentContainerValue value) {
52 PersistentContainerValue old_value = kPersistentContainerNotFound;
59 static PersistentContainerValue Get(Impl* impl, K key) {
64 static PersistentContainerValue Remove(Impl* impl, K key) {
67 PersistentContainerValue value = it->second;
115 * PersistentContainerValue, with all conversion into and out of V
    [all...]

Completed in 1262 milliseconds