OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_storageArea
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h
50
unsigned length(ExceptionState& ec) const { return
m_storageArea
->length(ec, m_frame); }
51
String key(unsigned index, ExceptionState& ec) const { return
m_storageArea
->key(index, ec, m_frame); }
52
String getItem(const String& key, ExceptionState& ec) const { return
m_storageArea
->getItem(key, ec, m_frame); }
53
void setItem(const String& key, const String& value, ExceptionState& ec) {
m_storageArea
->setItem(key, value, ec, m_frame); }
54
void removeItem(const String& key, ExceptionState& ec) {
m_storageArea
->removeItem(key, ec, m_frame); }
55
void clear(ExceptionState& ec) {
m_storageArea
->clear(ec, m_frame); }
56
bool contains(const String& key, ExceptionState& ec) const { return
m_storageArea
->contains(key, ec, m_frame); }
58
StorageArea* area() const { return
m_storageArea
.get(); }
74
OwnPtrWillBeMember<StorageArea>
m_storageArea
;
StorageEvent.cpp
66
,
m_storageArea
(storageArea)
76
,
m_storageArea
(initializer.storageArea)
91
m_storageArea
= storageArea;
101
visitor->trace(
m_storageArea
);
StorageArea.cpp
55
,
m_storageArea
(storageArea)
76
return
m_storageArea
->length();
85
return
m_storageArea
->key(index);
94
return
m_storageArea
->getItem(key);
104
m_storageArea
->setItem(key, value, frame->document()->url(), result);
115
m_storageArea
->removeItem(key, frame->document()->url());
124
m_storageArea
->clear(frame->document()->url());
155
return
m_storageArea
->memoryBytesUsedByCache();
209
return area->
m_storageArea
== sourceAreaInstance;
StorageEvent.h
59
Storage* storageArea() const { return
m_storageArea
.get(); }
79
RefPtrWillBeMember<Storage>
m_storageArea
;
Storage.cpp
43
,
m_storageArea
(storageArea)
46
ASSERT(
m_storageArea
);
127
visitor->trace(
m_storageArea
);
StorageArea.h
83
OwnPtr<WebStorageArea>
m_storageArea
;
Completed in 94 milliseconds