HomeSort by relevance Sort by last modified time
    Searched refs:Storage (Results 1 - 25 of 37) sorted by null

1 2

  /external/webkit/WebCore/storage/
Storage.cpp 27 #include "Storage.h"
37 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea)
39 return adoptRef(new Storage(frame, storageArea));
42 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea)
50 Storage::~Storage()
54 unsigned Storage::length() const
62 String Storage::key(unsigned index) cons
    [all...]
Storage.h 42 class Storage : public RefCounted<Storage> {
44 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
45 ~Storage();
60 Storage(Frame*, PassRefPtr<StorageArea>);
StorageEvent.h 36 class Storage;
41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
47 Storage* storageArea() const { return m_storageArea.get(); }
49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
52 // void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString uriArg, Storage storageAreaArg);
58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
64 RefPtr<Storage> m_storageArea;
StorageEvent.idl 26 module storage {
35 readonly attribute Storage storageArea;
36 void initStorageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in [ConvertNullToNullString] DOMString oldValueArg, in [ConvertNullToNullString] DOMString newValueArg, in DOMString uriArg, in Storage storageAreaArg);
39 // void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString uriArg, in Storage storageAreaArg);
StorageEvent.cpp 31 #include "Storage.h"
44 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
49 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
59 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea)
Storage.idl 26 module storage {
34 ] Storage {
  /external/webkit/WebCore/inspector/
InspectorDOMStorageResource.h 46 class Storage;
52 static PassRefPtr<InspectorDOMStorageResource> create(Storage* domStorage, bool isLocalStorage, Frame* frame)
70 Storage* domStorage() const { return m_domStorage.get(); }
74 InspectorDOMStorageResource(Storage*, bool isLocalStorage, Frame*);
76 RefPtr<Storage> m_domStorage;
InjectedScriptHost.h 50 class Storage;
84 void selectDOMStorage(Storage* storage);
InspectorDOMStorageResource.cpp 43 #include "Storage.h"
52 InspectorDOMStorageResource::InspectorDOMStorageResource(Storage* domStorage, bool isLocalStorage, Frame* frame)
106 Storage* storage = storageEvent->storageArea(); local
107 bool isLocalStorage = storage->frame()->domWindow()->localStorage() == storage;
108 if (isSameHostAndType(storage->frame(), isLocalStorage))
InjectedScriptHost.cpp 60 #include "Storage.h"
156 void InjectedScriptHost::selectDOMStorage(Storage* storage)
159 m_inspectorController->selectDOMStorage(storage);
InspectorBackend.h 46 class Storage;
InspectorFrontend.h 55 class Storage;
  /frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD_Init.c 39 pQPD_State->pDelay = pTaps->Storage;
LVPSA_QPD.h 43 LVM_INT32 Storage[1];
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
LVM_Timer.h 47 LVM_INT32 Storage[6];
BIQUAD.h 33 LVM_INT32 Storage[6];
126 LVM_INT32 Storage[ (1*2) ]; /* One channel, two taps of size LVM_INT32 */
131 LVM_INT32 Storage[ (2*2) ]; /* Two channels, two taps of size LVM_INT32 */
139 LVM_INT32 Storage[ (1*4) ]; /* One channel, four taps of size LVM_INT32 */
144 LVM_INT32 Storage[ (2*4) ]; /* Two channels, four taps of size LVM_INT32 */
  /external/webkit/WebCore/bindings/v8/custom/
V8StorageCustom.cpp 36 #include "Storage.h"
45 Storage* storage = V8Storage::toNative(info.Holder()); local
46 unsigned int length = storage->length();
49 String key = storage->key(i);
51 String val = storage->getItem(key);
60 Storage* storage = V8Storage::toNative(info.Holder()); local
63 if (storage->contains(name) && name != "length")
64 return v8String(storage->getItem(name))
84 Storage* storage = V8Storage::toNative(info.Holder()); local
119 Storage* storage = V8Storage::toNative(info.Holder()); local
    [all...]
  /external/webkit/WebCore/page/
DOMWindow.h 69 class Storage;
205 // HTML 5 key/value storage
206 Storage* sessionStorage() const;
207 Storage* localStorage() const;
314 DEFINE_ATTRIBUTE_EVENT_LISTENER(storage);
358 Storage* optionalSessionStorage() const { return m_sessionStorage.get(); }
359 Storage* optionalLocalStorage() const { return m_localStorage.get(); }
395 mutable RefPtr<Storage> m_sessionStorage;
396 mutable RefPtr<Storage> m_localStorage;
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
remove-item.js 1 description("Test .removeItem within DOM Storage.");
5 storage = eval(storageString);
6 if (!storage) {
13 evalAndLog("storage.clear()");
14 shouldBe("storage.length", "0");
17 shouldBeUndefined("storage.foo1");
18 evalAndLog("storage.foo1 = 'bar'");
19 shouldBeEqualToString("storage.foo1", "bar");
20 evalAndLog("storage.removeItem('foo1')");
21 shouldBeUndefined("storage.foo1")
    [all...]
complex-values.js 1 description("Test some corner case DOM Storage values.");
5 keyString = "storage['" + key + "']";
9 keyString = "storage." + key;
13 keyString = "storage.getItem('" + key + "')";
20 storage = eval(storageString);
21 if (!storage) {
28 evalAndLog("storage.clear()");
29 shouldBe("storage.length", "0");
32 shouldBeEqualToString("typeof storage['foo']", "undefined");
33 shouldBeUndefined("storage['foo']")
    [all...]
quota.js 1 description("Test the DOM Storage quota code.");
5 storage = eval(storageString);
6 if (!storage) {
13 evalAndLog("storage.clear()");
14 shouldBe("storage.length", "0");
24 storage[i] = data;
28 storage[39] = data;
35 shouldBeNull("storage.getItem(39)");
38 storage.removeItem('38');
42 storage['foo'] = "Hello!"
    [all...]
  /external/webkit/WebCore/bindings/js/
JSStorageCustom.cpp 33 #include "Storage.h"
39 bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName)
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-body-attribute.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener specified as an attribute on the body.");
6 window.storage = eval(storageString);
7 if (!storage) {
14 evalAndLog("storage.clear()");
15 shouldBe("storage.length", "0");
23 debug("Reset storage event list");
25 evalAndLog("storage.setItem('FOO', 'BAR')");
36 evalAndLog("storage.setItem('FU', 'BAR')");
37 evalAndLog("storage.setItem('a', '1')");
38 evalAndLog("storage.setItem('b', '2')")
    [all...]
basic-setattribute.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener attached via setattribute.");
6 window.storage = eval(storageString);
7 if (!storage) {
14 evalAndLog("storage.clear()");
15 shouldBe("storage.length", "0");
23 debug("Reset storage event list");
25 evalAndLog("storage.setItem('FOO', 'BAR')");
36 evalAndLog("storage.setItem('FU', 'BAR')");
37 evalAndLog("storage.setItem('a', '1')");
38 evalAndLog("storage.setItem('b', '2')")
    [all...]
basic.js 1 description("This is a test to make sure DOM Storage mutations fire StorageEvents that are caught by the event listener set via window.onstorage.");
6 window.storage = eval(storageString);
7 if (!storage) {
14 evalAndLog("storage.clear()");
15 shouldBe("storage.length", "0");
22 debug("Reset storage event list");
24 evalAndLog("storage.setItem('FOO', 'BAR')");
35 evalAndLog("storage.setItem('FU', 'BAR')");
36 evalAndLog("storage.setItem('a', '1')");
37 evalAndLog("storage.setItem('b', '2')")
    [all...]

Completed in 332 milliseconds

1 2