Searched refs:m_storageArea (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DStorage.cpp47 , m_storageArea(storageArea)
50 ASSERT(m_storageArea);
62 return m_storageArea->length();
70 return m_storageArea->key(index);
78 return m_storageArea->getItem(key);
87 m_storageArea->setItem(key, value, ec, m_frame);
95 m_storageArea->removeItem(key, m_frame);
103 m_storageArea->clear(m_frame);
111 return m_storageArea->contains(key);
H A DStorageEvent.cpp59 , m_storageArea(storageArea)
74 m_storageArea = storageArea;
H A DStorageEvent.h48 Storage* storageArea() const { return m_storageArea.get(); }
65 RefPtr<Storage> m_storageArea; member in class:WebCore::StorageEvent
H A DStorage.h62 RefPtr<StorageArea> m_storageArea; member in class:WebCore::Storage
H A DStorageAreaSync.cpp57 , m_storageArea(storageArea)
68 ASSERT(m_storageArea);
96 m_storageArea = 0; // This is done in blockUntilImportComplete() but this is here as a form of documentation that we must be absolutely sure the ref count cycle is broken.
303 m_storageArea->importItem(it->first, it->second);
326 // Fast path. We set m_storageArea to 0 only after m_importComplete being true.
327 if (!m_storageArea)
333 m_storageArea = 0;
H A DStorageAreaSync.h67 RefPtr<StorageAreaImpl> m_storageArea; member in class:WebCore::StorageAreaSync
/external/webkit/Source/WebKit/chromium/src/
H A DWebStorageAreaImpl.cpp46 : m_storageArea(storageArea)
56 return m_storageArea->length();
61 return m_storageArea->key(index);
66 return m_storageArea->getItem(key);
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
86 oldValue = m_storageArea->removeItem(key, 0);
92 somethingCleared = m_storageArea->clear(0);
H A DStorageAreaProxy.cpp51 : m_storageArea(storageArea)
62 return m_storageArea->length();
67 return m_storageArea->key(index);
72 return m_storageArea->getItem(key);
80 m_storageArea->setItem(key, value, frame->document()->url(), result, oldValue, webFrame);
91 m_storageArea->removeItem(key, frame->document()->url(), oldValue);
100 m_storageArea->clear(frame->document()->url(), clearedSomething);
H A DStorageAreaProxy.h57 OwnPtr<WebKit::WebStorageArea> m_storageArea; member in class:WebCore::StorageAreaProxy
H A DWebStorageAreaImpl.h76 RefPtr<WebCore::StorageArea> m_storageArea; member in class:WebKit::WebStorageAreaImpl

Completed in 92 milliseconds