Searched refs:storage (Results 1 - 25 of 316) sorted by relevance

1234567891011>>

/external/expat/tests/
H A Dchardata.c35 CharData_Init(CharData *storage) argument
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s) argument
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
61 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) argument
83 CharData_CheckString(CharData *storage, const char *expected) argument
112 CharData_CheckXMLChars(CharData *storage, const XML_Char *expected) argument
[all...]
H A Dchardata.h25 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/
H A DWebCookieManagerCFNet.cpp38 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
40 if (!storage)
43 *storage = currentCookieStorage();
48 /* [in] */ CFHTTPCookieStorageRef storage)
50 setCurrentCookieStorage(storage);
37 cookieStorage( CFHTTPCookieStorageRef* storage) argument
47 setCookieStorage( CFHTTPCookieStorageRef storage) argument
H A DWebCookieManagerCurl.cpp37 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
44 /* [in] */ CFHTTPCookieStorageRef storage)
36 cookieStorage( CFHTTPCookieStorageRef* storage) argument
43 setCookieStorage( CFHTTPCookieStorageRef storage) argument
/external/webkit/Source/WebCore/storage/
H A DIDBAny.idl26 module storage {
H A DIDBKey.idl26 module storage {
H A DIDBCursorWithValue.idl26 module storage {
H A DIDBVersionChangeEvent.idl26 module storage {
H A DIDBVersionChangeRequest.idl26 module storage {
H A DSQLTransactionCallback.idl29 module storage {
H A DSQLTransactionErrorCallback.idl29 module storage {
H A DSQLTransactionSyncCallback.idl31 module storage {
H A DStorageInfoErrorCallback.idl31 module storage {
/external/webkit/Source/WebCore/fileapi/
H A DDirectoryReaderSync.idl31 module storage {
H A DEntriesCallback.idl31 module storage {
H A DEntryCallback.idl31 module storage {
H A DErrorCallback.idl31 module storage {
H A DFileSystemCallback.idl31 module storage {
H A DMetadata.idl31 module storage {
H A DMetadataCallback.idl31 module storage {
H A DDOMFileSystem.idl31 module storage {
H A DDOMFileSystemSync.idl31 module storage {
/external/webkit/LayoutTests/storage/domstorage/script-tests/
H A Dquota.js5 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!";
51 storage
[all...]
H A Dclear.js1 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['BA
[all...]
/external/skia/src/core/
H A DSkTemplatesPriv.h18 #define SK_PLACEMENT_NEW(result, classname, storage, storageSize) \
21 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storageSize, args) \
25 #define SK_PLACEMENT_NEW(result, classname, storage, storagesize) \
30 result = new(storage) classname; \
36 #define SK_PLACEMENT_NEW_ARGS(result, classname, storage, storagesize, args) \
41 result = new(storage) classname args; \
52 SkAutoTPlacementDelete(T* obj, void* storage) : fObj(obj), fStorage(storage) argument

Completed in 281 milliseconds

1234567891011>>