/external/chromium/base/ |
bind_internal.h | 365 // of StorageType; its first argument is a pointer to the non-templated common 366 // baseclass of StorageType. This lets us store pointer to DoInvoke() in a 367 // function pointer that has knowledge of the specific StorageType, and thus 371 // upcasted from the correct StorageType, we can be sure that execution is 379 template <typename StorageType, typename NormalizedSig> 383 template <typename StorageType, typename R> 384 struct Invoker0<StorageType, R(*)()> { 386 StorageType* invoker = static_cast<StorageType*>(base); 392 template <typename StorageType, typename R,typename X1 [all...] |
bind_internal.h.pump | 140 // of StorageType; its first argument is a pointer to the non-templated common 141 // baseclass of StorageType. This lets us store pointer to DoInvoke() in a 142 // function pointer that has knowledge of the specific StorageType, and thus 146 // upcasted from the correct StorageType, we can be sure that execution is 157 template <typename StorageType, typename NormalizedSig> 179 template <typename StorageType, typename R[[]] 182 struct Invoker$(BOUND)<StorageType, R(*)($for ARG , [[X$(ARG)]])> { 186 StorageType* invoker = static_cast<StorageType*>(base); 197 template <typename StorageType, typename R, typename T[[] [all...] |
callback_internal.h | 100 typedef T StorageType; 111 typedef T StorageType; 122 typedef const T* StorageType; 129 typedef const T* StorageType;
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageInfoChromium.cpp | 61 void StorageInfo::queryUsageAndQuota(ScriptExecutionContext* context, int storageType, PassRefPtr<StorageInfoUsageCallback> successCallback, PassRefPtr<StorageInfoErrorCallback> errorCallback) 64 if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorageQuotaTypePersistent) { 72 webFrame->client()->queryStorageUsageAndQuota(webFrame, static_cast<WebStorageQuotaType>(storageType), new WebStorageQuotaCallbacksImpl(successCallback, errorCallback)); 79 void StorageInfo::requestQuota(ScriptExecutionContext* context, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageInfoQuotaCallback> successCallback, PassRefPtr<StorageInfoErrorCallback> errorCallback) 82 if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorageQuotaTypePersistent) { 90 webFrame->client()->requestStorageQuota(webFrame, static_cast<WebStorageQuotaType>(storageType), newQuotaInBytes, new WebStorageQuotaCallbacksImpl(successCallback, errorCallback));
|
StorageAreaProxy.h | 42 StorageAreaProxy(WebKit::WebStorageArea*, StorageType); 55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame); 58 StorageType m_storageType;
|
StorageEventDispatcherChromium.cpp | 47 const String& newValue, StorageType storageType, 51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
|
WebStorageEventDispatcherImpl.cpp | 65 WebCore::StorageType storageType = isLocalStorage ? WebCore::LocalStorage : WebCore::SessionStorage; 67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
|
StorageNamespaceProxy.h | 40 StorageNamespaceProxy(WebKit::WebStorageNamespace*, StorageType); 54 StorageType m_storageType;
|
StorageAreaProxy.cpp | 50 StorageAreaProxy::StorageAreaProxy(WebKit::WebStorageArea* storageArea, StorageType storageType) 52 , m_storageType(storageType) 112 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) 121 if (storageType == SessionStorage) {
|
StorageEventDispatcherImpl.cpp | 55 const KURL& url, StorageType storageType) 58 if (storageType == SessionStorage)
|
StorageNamespaceProxy.cpp | 56 StorageNamespaceProxy::StorageNamespaceProxy(WebKit::WebStorageNamespace* storageNamespace, StorageType storageType) 58 , m_storageType(storageType)
|
StorageEventDispatcherImpl.h | 51 const KURL&, StorageType);
|
/external/webkit/Source/WebCore/storage/ |
StorageAreaImpl.h | 44 static PassRefPtr<StorageAreaImpl> create(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota); 68 StorageAreaImpl(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota); 73 StorageType m_storageType;
|
StorageInfo.h | 58 void queryUsageAndQuota(ScriptExecutionContext*, int storageType, PassRefPtr<StorageInfoUsageCallback>, PassRefPtr<StorageInfoErrorCallback>); 60 void requestQuota(ScriptExecutionContext*, int storageType, unsigned long long newQuotaInBytes, PassRefPtr<StorageInfoQuotaCallback>, PassRefPtr<StorageInfoErrorCallback>);
|
StorageAreaImpl.cpp | 47 inline StorageAreaImpl::StorageAreaImpl(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) 48 : m_storageType(storageType) 61 PassRefPtr<StorageAreaImpl> StorageAreaImpl::create(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) 63 RefPtr<StorageAreaImpl> area = adoptRef(new StorageAreaImpl(storageType, origin, syncManager, quota));
|
StorageEventDispatcher.cpp | 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) 54 if (storageType == SessionStorage) {
|
StorageNamespaceImpl.h | 69 StorageNamespaceImpl(StorageType, const String& path, unsigned quota); 74 StorageType m_storageType;
|
StorageInfo.idl | 35 [CallWith=ScriptExecutionContext] void queryUsageAndQuota(in unsigned short storageType, in [Callback, Optional] StorageInfoUsageCallback usageCallback, in [Callback, Optional] StorageInfoErrorCallback errorCallback);
|
StorageEventDispatcher.h | 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
|
StorageNamespaceImpl.cpp | 71 StorageNamespaceImpl::StorageNamespaceImpl(StorageType storageType, const String& path, unsigned quota) 72 : m_storageType(storageType)
|
StorageArea.h | 42 enum StorageType { LocalStorage, SessionStorage };
|
/external/clang/include/clang/AST/ |
TemplateName.h | 181 DependentTemplateName *> StorageType; 183 StorageType Storage; 186 Storage = StorageType::getFromOpaqueValue(Ptr);
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-matchers.h | [all...] |
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_opengl.h | [all...] |
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_opengl.h | [all...] |