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
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
;
StorageEvent.cpp
68
,
m_storageArea
(storageArea)
79
,
m_storageArea
(initializer.storageArea)
95
m_storageArea
= storageArea;
Storage.cpp
43
,
m_storageArea
(storageArea)
46
ASSERT(
m_storageArea
);
/external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.cpp
54
:
m_storageArea
(storageArea)
71
return
m_storageArea
->length();
80
return
m_storageArea
->key(index);
89
return
m_storageArea
->getItem(key);
99
m_storageArea
->setItem(key, value, frame->document()->url(), result);
110
m_storageArea
->removeItem(key, frame->document()->url());
119
m_storageArea
->clear(frame->document()->url());
153
return
m_storageArea
->memoryBytesUsedByCache();
204
return areaProxy->
m_storageArea
== sourceAreaInstance;
StorageAreaProxy.h
74
OwnPtr<blink::WebStorageArea>
m_storageArea
;
Completed in 32 milliseconds