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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/storage/domstorage/script-tests/
complex-keys.js 1 description("Test dom storage with many different types of keys (as opposed to values)");
5 storage = eval(storageString);
6 if (!storage) {
13 evalAndLog("storage.clear()");
14 shouldBe("storage.length", "0");
17 shouldBeNull("storage.getItem('FOO')");
18 evalAndLog("storage.setItem('FOO', 'BAR')");
19 shouldBe("storage.length", "1");
21 shouldBeEqualToString("storage.getItem('FOO')", "BAR");
22 shouldBeNull("storage.getItem('foo')")
    [all...]
clear.js 1 description("Test basic dom storage .clear() functionality.");
5 storage = eval(storageString);
6 if (!storage) {
13 evalAndLog("storage.clear()");
14 shouldBe("storage.length", "0");
16 evalAndLog("storage['FOO'] = 'MyFOO'");
17 evalAndLog("storage['BAR'] = 'MyBar'");
18 shouldBe("storage.length", "2");
19 shouldBeEqualToString("storage['FOO']", "MyFOO");
20 shouldBeEqualToString("storage['BAR']", "MyBar")
    [all...]
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...]
  /frameworks/base/core/java/android/os/storage/
StorageVolume.aidl 17 package android.os.storage;
  /external/expat/tests/
chardata.c 35 CharData_Init(CharData *storage)
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s)
44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count)
    [all...]
chardata.h 25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
  /external/webkit/Source/WebKit/win/
WebCookieManagerCFNet.cpp 38 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
40 if (!storage)
43 *storage = currentCookieStorage();
48 /* [in] */ CFHTTPCookieStorageRef storage)
50 setCurrentCookieStorage(storage);
WebCookieManagerCurl.cpp 37 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
44 /* [in] */ CFHTTPCookieStorageRef storage)
  /external/webkit/Source/WebCore/storage/
IDBAny.idl 26 module storage {
IDBKey.idl 26 module storage {
IDBCursorWithValue.idl 26 module storage {
IDBVersionChangeEvent.idl 26 module storage {
IDBVersionChangeRequest.idl 26 module storage {
SQLTransactionCallback.idl 29 module storage {
SQLTransactionErrorCallback.idl 29 module storage {
SQLTransactionSyncCallback.idl 31 module storage {
StorageInfoErrorCallback.idl 31 module storage {
  /external/webkit/Source/WebCore/fileapi/
DirectoryReaderSync.idl 31 module storage {
EntriesCallback.idl 31 module storage {
EntryCallback.idl 31 module storage {
ErrorCallback.idl 31 module storage {
FileSystemCallback.idl 31 module storage {
Metadata.idl 31 module storage {
MetadataCallback.idl 31 module storage {

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 91011>>