OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_storageArea
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.h
74
OwnPtr<blink::WebStorageArea>
m_storageArea
;
/external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h
46
unsigned length(ExceptionState& ec) const { return
m_storageArea
->length(ec, m_frame); }
47
String key(unsigned index, ExceptionState& ec) const { return
m_storageArea
->key(index, ec, m_frame); }
48
String getItem(const String& key, ExceptionState& ec) const { return
m_storageArea
->getItem(key, ec, m_frame); }
49
void setItem(const String& key, const String& value, ExceptionState& ec) {
m_storageArea
->setItem(key, value, ec, m_frame); }
50
void removeItem(const String& key, ExceptionState& ec) {
m_storageArea
->removeItem(key, ec, m_frame); }
51
void clear(ExceptionState& ec) {
m_storageArea
->clear(ec, m_frame); }
52
bool contains(const String& key, ExceptionState& ec) const { return
m_storageArea
->contains(key, ec, m_frame); }
54
StorageArea* area() const { return
m_storageArea
.get(); }
68
OwnPtr<StorageArea>
m_storageArea
;
StorageEvent.h
57
Storage* storageArea() const { return
m_storageArea
.get(); }
58
Storage* storageArea(bool& isNull) const { isNull = !
m_storageArea
; return
m_storageArea
.get(); }
76
RefPtr<Storage>
m_storageArea
;
Completed in 435 milliseconds