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

  /external/webkit/WebCore/storage/
Storage.cpp 44 , m_storageArea(storageArea)
47 ASSERT(m_storageArea);
59 return m_storageArea->length();
67 return m_storageArea->key(index);
75 return m_storageArea->getItem(key);
84 m_storageArea->setItem(key, value, ec, m_frame);
92 m_storageArea->removeItem(key, m_frame);
100 m_storageArea->clear(m_frame);
108 return m_storageArea->contains(key);
StorageEvent.cpp 55 , m_storageArea(storageArea)
70 m_storageArea = storageArea;
StorageEvent.h 47 Storage* storageArea() const { return m_storageArea.get(); }
64 RefPtr<Storage> m_storageArea;
Storage.h 63 RefPtr<StorageArea> m_storageArea;
StorageAreaSync.cpp 55 , m_storageArea(storageArea)
63 ASSERT(m_storageArea);
84 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.
217 m_storageArea->importItem(it->first, it->second);
240 // Fast path. We set m_storageArea to 0 only after m_importComplete being true.
241 if (!m_storageArea)
247 m_storageArea = 0;
StorageAreaSync.h 65 RefPtr<StorageAreaImpl> m_storageArea;
  /external/webkit/WebKit/chromium/src/
WebStorageAreaImpl.cpp 46 : 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);
StorageAreaProxy.cpp 50 : m_storageArea(storageArea)
61 return m_storageArea->length();
66 return m_storageArea->key(index);
71 return m_storageArea->getItem(key);
78 m_storageArea->setItem(key, value, frame->document()->url(), quotaException, oldValue);
89 m_storageArea->removeItem(key, frame->document()->url(), oldValue);
98 m_storageArea->clear(frame->document()->url(), clearedSomething);
StorageAreaProxy.h 57 OwnPtr<WebKit::WebStorageArea> m_storageArea;
WebStorageAreaImpl.h 76 RefPtr<WebCore::StorageArea> m_storageArea;

Completed in 334 milliseconds