HomeSort by relevance Sort by last modified time
    Searched defs:StorageType (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h 38 enum StorageType { LocalStorage, SessionStorage };
  /external/chromium/base/
callback_internal.h 100 typedef T StorageType;
111 typedef T StorageType;
122 typedef const T* StorageType;
129 typedef const T* StorageType;
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...]
  /external/chromium_org/base/
callback_internal.h 84 typedef T StorageType;
95 typedef T StorageType;
106 typedef const T* StorageType;
113 typedef const T* StorageType;
136 typedef scoped_ptr<T, D> StorageType;
142 typedef scoped_ptr_malloc<T, R> StorageType;
148 typedef ScopedVector<T> StorageType;
  /external/chromium_org/ppapi/cpp/private/
pass_file_handle.h 63 typedef PP_FileHandle StorageType;
65 static inline APIArgType StorageToAPIArg(StorageType& t) {
69 static inline PassFileHandle StorageToPluginArg(StorageType& t) {
73 static inline void Initialize(StorageType* t) {
video_frame_private.h 83 typedef PP_VideoFrame_Private StorageType;
85 static inline APIArgType StorageToAPIArg(StorageType& t) {
89 static inline pp::VideoFrame_Private StorageToPluginArg(StorageType& t) {
93 static inline void Initialize(StorageType* t) {
  /external/chromium_org/webkit/common/quota/
quota_types.h 12 enum StorageType {
  /external/chromium_org/ppapi/cpp/
directory_entry.h 112 typedef DirectoryEntryArrayOutputAdapterWithStorage StorageType;
114 static inline APIArgType StorageToAPIArg(StorageType& t) {
119 StorageType& t) {
123 static inline void Initialize(StorageType* /* t */) {}
output_traits.h 77 typedef T StorageType;
82 static inline APIArgType StorageToAPIArg(StorageType& t) { return &t; }
87 static inline T& StorageToPluginArg(StorageType& t) { return t; }
91 static inline void Initialize(StorageType* /* t */) {}
106 typedef PP_Resource StorageType;
108 static inline APIArgType StorageToAPIArg(StorageType& t) {
117 static inline T StorageToPluginArg(StorageType& t) {
121 static inline void Initialize(StorageType* t) {
146 typedef PP_Var StorageType;
148 static inline APIArgType StorageToAPIArg(StorageType& t)
    [all...]
  /external/chromium_org/chrome/test/webdriver/
webdriver_session.h 50 enum StorageType {
353 Error* SetStorageItem(StorageType type,
358 Error* GetStorageItem(StorageType type,
363 Error* RemoveStorageItem(StorageType type,
368 Error* GetStorageSize(StorageType type, int* size);
371 Error* ClearStorage(StorageType type);
375 Error* GetStorageKeys(StorageType type, base::ListValue** keys);
  /external/chromium_org/ppapi/cpp/extensions/
ext_output_traits.h 60 typedef VarOutputAdapterWithStorage<T> StorageType;
62 static inline APIArgType StorageToAPIArg(StorageType& t) {
68 static inline T& StorageToPluginArg(StorageType& t) {
72 static inline void Initialize(StorageType* /* t */) {}
123 typedef ArrayVarOutputAdapterWithStorage<T> StorageType;
125 static inline APIArgType StorageToAPIArg(StorageType& t) {
131 static inline std::vector<T>& StorageToPluginArg(StorageType& t) {
135 static inline void Initialize(StorageType* /* t */) {}
  /external/chromium_org/third_party/WebKit/public/platform/
WebDragData.h 54 enum StorageType {
65 StorageType storageType;
67 // Only valid when storageType == StorageTypeString.
71 // Only valid when storageType == StorageTypeFilename.
75 // Only valid when storageType == StorageTypeBinaryData.
79 // Filename when storageType == StorageTypeBinaryData.
  /external/chromium_org/ppapi/cpp/dev/
truetype_font_dev.h 202 typedef PP_TrueTypeFontDesc_Dev StorageType;
204 static inline APIArgType StorageToAPIArg(StorageType& t) {
208 static inline TrueTypeFontDesc_Dev StorageToPluginArg(StorageType& t) {
212 static inline void Initialize(StorageType* t) {
254 typedef TrueTypeFontDescArrayOutputAdapterWithStorage StorageType;
256 static inline APIArgType StorageToAPIArg(StorageType& t) {
261 StorageType& t) {
265 static inline void Initialize(StorageType* /* t */) {}
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
SyncCallbackHelper.h 55 typedef RefPtr<ResultType> StorageType;
66 typedef EntrySyncVector StorageType;
86 typedef typename ResultTypeTrait::StorageType ResultStorageType;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 326 typedef T StorageType;
328 static StorageType wrap(const T& value) { return value; }
329 static const T& unwrap(const StorageType& value) { return value; }
333 typedef RefPtr<T> StorageType;
335 static StorageType wrap(PassRefPtr<T> value) { return value; }
336 static T* unwrap(const StorageType& value) { return value.get(); }
340 typedef RefPtr<T> StorageType;
342 static StorageType wrap(RefPtr<T> value) { return value.release(); }
343 static T* unwrap(const StorageType& value) { return value.get(); }
349 typedef RetainPtr<T> StorageType;
    [all...]
  /external/chromium_org/v8/src/
lazy-instance.h 124 typedef char StorageType[sizeof(T)] LAZY_ALIGN(T);
126 static T* MutableInstance(StorageType* storage) {
131 static void InitStorageUsingTrait(StorageType* storage) {
141 typedef T* StorageType;
143 static T* MutableInstance(StorageType* storage) {
148 static void InitStorageUsingTrait(StorageType* storage) {
196 typedef typename AllocationTrait::StorageType StorageType;
199 static void InitInstance(StorageType* storage) {
227 mutable StorageType storage_
    [all...]
  /external/v8/src/
lazy-instance.h 120 typedef char StorageType[sizeof(T)] LAZY_ALIGN(T);
122 static T* MutableInstance(StorageType* storage) {
127 static void InitStorageUsingTrait(StorageType* storage) {
137 typedef T* StorageType;
139 static T* MutableInstance(StorageType* storage) {
144 static void InitStorageUsingTrait(StorageType* storage) {
192 typedef typename AllocationTrait::StorageType StorageType;
195 static void InitInstance(StorageType* storage) {
223 mutable StorageType storage_
    [all...]
  /external/chromium_org/ppapi/utility/
completion_callback_factory.h 24 typedef T StorageType;
27 typedef T StorageType;
30 typedef T StorageType;
296 typename internal::TypeUnwrapper<Output>::StorageType>
298 typedef typename internal::TypeUnwrapper<Output>::StorageType
313 typename internal::TypeUnwrapper<Output>::StorageType>
315 typedef typename internal::TypeUnwrapper<Output>::StorageType
381 typename internal::TypeUnwrapper<Output>::StorageType>
384 typedef typename internal::TypeUnwrapper<Output>::StorageType
391 typename internal::TypeUnwrapper<A>::StorageType> DispatcherType
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 179 DependentTemplateName *> StorageType;
181 StorageType Storage;
184 Storage = StorageType::getFromOpaqueValue(Ptr);
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]
  /external/libmtp/src/
libmtp.h 709 uint16_t StorageType; /**< Storage type */
    [all...]
ptp.h 708 uint16_t StorageType;
    [all...]

Completed in 643 milliseconds