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

1 2

  /external/webkit/WebKit/chromium/public/
WebStorageArea.h 69 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
72 setItem(key, newValue, url, quotaException, oldValue);
76 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, bool& quotaException, WebString& oldValue)
79 setItem(key, newValue, url, result, oldValue);
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
complex-keys.js 18 evalAndLog("storage.setItem('FOO', 'BAR')");
34 evalAndLog("storage.setItem('foo', 'z')");
42 evalAndLog("storage.setItem(null, 'asdf')");
53 evalAndLog("storage.setItem('null', 3)");
68 evalAndLog("storage.setItem(undefined, 5)");
70 evalAndLog("storage.setItem('undefined', 6)");
85 evalAndLog("storage.setItem(2, 8)");
87 evalAndLog("storage.setItem('2', 9)");
105 evalAndLog("storage.setItem('foo3', 'lower3')");
106 evalAndLog("storage.setItem('FOO3', 'UPPER3')")
    [all...]
complex-values.js 44 evalAndLog("storage.setItem('foo3', null)");
52 evalAndLog("storage.setItem('foo6', undefined)");
60 evalAndLog("storage.setItem('foo9', 2)");
69 evalAndLog("storage.setItem('foo12', k)");
remove-item.js 36 evalAndLog("storage.setItem('foo3', 'bar')");
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-body-attribute.js 25 evalAndLog("storage.setItem('FOO', 'BAR')");
36 evalAndLog("storage.setItem('FU', 'BAR')");
37 evalAndLog("storage.setItem('a', '1')");
38 evalAndLog("storage.setItem('b', '2')");
39 evalAndLog("storage.setItem('b', '3')");
basic-setattribute.js 25 evalAndLog("storage.setItem('FOO', 'BAR')");
36 evalAndLog("storage.setItem('FU', 'BAR')");
37 evalAndLog("storage.setItem('a', '1')");
38 evalAndLog("storage.setItem('b', '2')");
39 evalAndLog("storage.setItem('b', '3')");
basic.js 24 evalAndLog("storage.setItem('FOO', 'BAR')");
35 evalAndLog("storage.setItem('FU', 'BAR')");
36 evalAndLog("storage.setItem('a', '1')");
37 evalAndLog("storage.setItem('b', '2')");
38 evalAndLog("storage.setItem('b', '3')");
  /external/webkit/WebCore/storage/
StorageArea.h 53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
Storage.cpp 78 void Storage::setItem(const String& key, const String& value, ExceptionCode& ec)
84 m_storageArea->setItem(key, value, ec, m_frame);
Storage.idl 38 [DontEnum] void setItem(in DOMString key, in DOMString data)
Storage.h 50 void setItem(const String& key, const String& value, ExceptionCode&);
StorageMap.h 48 PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quota_exception);
StorageAreaImpl.h 51 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
StorageAreaImpl.cpp 135 String StorageAreaImpl::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame)
148 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException);
StorageMap.cpp 102 PassRefPtr<StorageMap> StorageMap::setItem(const String& key, const String& value, String& oldValue, bool& quotaException)
111 newStorageMap->setItem(key, value, oldValue, quotaException);
  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTMIterator.java 236 * the <code>setItem(int node, int index)</code> method.
295 public void setItem(int node, int index);
  /external/webkit/WebKit/chromium/src/
WebStorageAreaImpl.cpp 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue)
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
StorageAreaProxy.h 49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
WebStorageAreaImpl.h 48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue);
StorageAreaProxy.cpp 74 String StorageAreaProxy::setItem(const String& key, const String& value, ExceptionCode& ec, Frame* frame)
78 m_storageArea->setItem(key, value, frame->document()->url(), quotaException, oldValue);
  /external/webkit/WebCore/inspector/front-end/
DOMStorage.js 63 setItem: function(key, value, callback)
DOMStorageItemsView.js 137 domStorage.setItem(newText, editingNode.data[1]);
139 domStorage.setItem(editingNode.data[0], newText);
  /external/webkit/WebCore/bindings/js/
JSStorageCustom.cpp 94 impl()->setItem(propertyName, stringValue, ec);
  /frameworks/base/core/java/android/view/
MenuInflater.java 293 private void setItem(MenuItem item) {
310 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
316 setItem(subMenu.getItem());
  /external/webkit/WebCore/bindings/v8/custom/
V8StorageCustom.cpp 97 storage->setItem(name, value, ec);

Completed in 127 milliseconds

1 2