/external/webkit/LayoutTests/storage/domstorage/ |
D | complex-keys-expected.txt | 11 storage.setItem('FOO', 'BAR') 25 storage.setItem('foo', 'z') 32 storage.setItem(null, 'asdf') 42 storage.setItem('null', 3) 55 storage.setItem(undefined, 5) 57 storage.setItem('undefined', 6) 70 storage.setItem(2, 8) 72 storage.setItem('2', 9) 87 storage.setItem('foo3', 'lower3') 88 storage.setItem('FOO3', 'UPPER3') [all …]
|
D | complex-values-expected.txt | 31 storage.setItem('foo3', null) 53 storage.setItem('foo6', undefined) 75 storage.setItem('foo9', 2) 97 storage.setItem('foo12', k) 131 storage.setItem('foo3', null) 153 storage.setItem('foo6', undefined) 175 storage.setItem('foo9', 2) 197 storage.setItem('foo12', k)
|
D | window-attributes-exist-expected.txt | 6 Storage object sessionStorage has setItem 15 Storage object localStorage has setItem
|
D | remove-item-expected.txt | 27 storage.setItem('foo3', 'bar') 56 storage.setItem('foo3', 'bar')
|
/external/webkit/LayoutTests/storage/domstorage/events/ |
D | basic-expected.txt | 11 storage.setItem('FOO', 'BAR') 16 storage.setItem('FU', 'BAR') 17 storage.setItem('a', '1') 18 storage.setItem('b', '2') 19 storage.setItem('b', '3') 55 storage.setItem('FOO', 'BAR') 60 storage.setItem('FU', 'BAR') 61 storage.setItem('a', '1') 62 storage.setItem('b', '2') 63 storage.setItem('b', '3')
|
D | basic-setattribute-expected.txt | 13 storage.setItem('FOO', 'BAR') 18 storage.setItem('FU', 'BAR') 19 storage.setItem('a', '1') 20 storage.setItem('b', '2') 21 storage.setItem('b', '3') 59 storage.setItem('FOO', 'BAR') 64 storage.setItem('FU', 'BAR') 65 storage.setItem('a', '1') 66 storage.setItem('b', '2') 67 storage.setItem('b', '3')
|
D | basic-body-attribute-expected.txt | 13 storage.setItem('FOO', 'BAR') 18 storage.setItem('FU', 'BAR') 19 storage.setItem('a', '1') 20 storage.setItem('b', '2') 21 storage.setItem('b', '3') 59 storage.setItem('FOO', 'BAR') 64 storage.setItem('FU', 'BAR') 65 storage.setItem('a', '1') 66 storage.setItem('b', '2') 67 storage.setItem('b', '3')
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebStorageArea.h | 70 …virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& r… in setItem() function 72 setItem(key, newValue, url, result, oldValue); in setItem() 75 …virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& r… in setItem() function 77 setItem(key, newValue, url, result, oldValue, 0); in setItem()
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
D | options.js | 252 window.localStorage.setItem('keywords', JSON.stringify(keywords)); 254 window.localStorage.setItem('keywords', JSON.stringify(tempCusTopics)); 261 window.localStorage.setItem('topics', JSON.stringify(topicArr)); 266 window.localStorage.setItem('count', count); 267 window.localStorage.setItem('country', country); 383 window.localStorage.setItem('keywords', JSON.stringify(keywords));
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebStorageAreaImpl.cpp | 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, R… in setItem() function in WebKit::WebStorageAreaImpl 74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0); in setItem()
|
D | StorageAreaProxy.cpp | 75 String StorageAreaProxy::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* … in setItem() function in WebCore::StorageAreaProxy 80 m_storageArea->setItem(key, value, frame->document()->url(), result, oldValue, webFrame); in setItem()
|
D | WebStorageAreaImpl.h | 48 …virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& resu…
|
/external/webkit/Source/WebCore/storage/ |
D | Storage.cpp | 81 void Storage::setItem(const String& key, const String& value, ExceptionCode& ec) in setItem() function in WebCore::Storage 87 m_storageArea->setItem(key, value, ec, m_frame); in setItem()
|
D | StorageMap.cpp | 102 PassRefPtr<StorageMap> StorageMap::setItem(const String& key, const String& value, String& oldValue… in setItem() function in WebCore::StorageMap 111 newStorageMap->setItem(key, value, oldValue, quotaException); in setItem()
|
D | Storage.h | 49 void setItem(const String& key, const String& value, ExceptionCode&);
|
D | StorageArea.h | 53 …virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFra…
|
D | StorageAreaImpl.cpp | 137 String StorageAreaImpl::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* f… in setItem() function in WebCore::StorageAreaImpl 150 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException); in setItem()
|
D | StorageMap.h | 47 …PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quo…
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | DOMStorageItemsView.js | 139 domStorage.setItem(newText, editingNode.data[1]); 141 domStorage.setItem(editingNode.data[0], newText);
|
D | DOMStorage.js | 57 setItem: function(key, value, callback) method in WebInspector.DOMStorage
|
/external/webkit/Source/WebCore/dom/ |
D | DOMStringMap.h | 49 virtual void setItem(const String& name, const String& value, ExceptionCode&) = 0;
|
D | DatasetDOMStringMap.h | 49 virtual void setItem(const String& name, const String& value, ExceptionCode&);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
D | DTMIterator.java | 295 public void setItem(int node, int index); in setItem() method
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
D | index-get-and-set-expected.txt | 8 Setting FOO again, using setItem.
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
D | index-get-and-set-expected.txt | 8 Setting FOO again, using setItem.
|