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

  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h 46 enum StorageType {
54 static PassOwnPtrWillBeRawPtr<StorageArea> create(PassOwnPtr<WebStorageArea>, StorageType);
79 StorageArea(PassOwnPtr<WebStorageArea>, StorageType);
84 StorageType m_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/storage/common/quota/
quota_types.h 12 enum StorageType {
  /external/chromium_org/mojo/public/cpp/bindings/
array.h 29 typedef typename Traits::StorageType StorageType;
92 const std::vector<StorageType>& storage() const {
95 operator const std::vector<StorageType>&() const {
103 void Swap(std::vector<StorageType>* other) {
109 typedef std::vector<StorageType> Array::*Testable;
120 std::vector<StorageType> vec_;
  /external/chromium_org/base/
callback_internal.h 98 typedef T StorageType;
109 typedef T StorageType;
120 typedef const T* StorageType;
127 typedef const T* StorageType;
146 typedef T 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/third_party/WebKit/public/platform/
WebDragData.h 50 enum StorageType {
63 StorageType storageType;
65 // Only valid when storageType == StorageTypeString.
69 // Only valid when storageType == StorageTypeFilename.
73 // Only valid when storageType == StorageTypeBinaryData.
77 // Filename when storageType == StorageTypeBinaryData.
80 // Only valid when storageType == StorageTypeFileSystemFile.
  /external/chromium_org/chrome/browser/devtools/
devtools_embedder_message_dispatcher.cc 43 typedef T StorageType;
48 typedef T StorageType;
54 typedef typename StorageTraits<A>::StorageType ValueType;
  /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 56 typedef Member<ResultType> StorageType;
70 typedef typename ResultTypeTrait::StorageType ResultStorageType;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 345 typedef T StorageType;
347 static StorageType wrap(const T& value) { return value; }
348 static const T& unwrap(const StorageType& value) { return value; }
352 typedef RefPtr<T> StorageType;
354 static StorageType wrap(PassRefPtr<T> value) { return value; }
355 static T* unwrap(const StorageType& value) { return value.get(); }
359 typedef RefPtr<T> StorageType;
361 static StorageType wrap(RefPtr<T> value) { return value.release(); }
362 static T* unwrap(const StorageType& value) { return value.get(); }
368 typedef RetainPtr<T> StorageType;
    [all...]
  /external/chromium_org/v8/src/base/
lazy-instance.h 96 struct V8_ALIGNAS(T, 16) StorageType {
100 STATIC_ASSERT(V8_ALIGNOF(StorageType) >= V8_ALIGNOF(T));
102 static T* MutableInstance(StorageType* storage) {
107 static void InitStorageUsingTrait(StorageType* storage) {
115 typedef T* StorageType;
117 static T* MutableInstance(StorageType* storage) {
122 static void InitStorageUsingTrait(StorageType* storage) {
170 typedef typename AllocationTrait::StorageType StorageType;
173 static void InitInstance(StorageType* storage)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSynchronizationTests.cpp 118 enum StorageType
132 InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storage, int flags = 0);
147 const StorageType m_storage;
164 InterInvocationTestCase::InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storage, int flags)
444 InvocationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, int flags);
450 InvocationBasicCase::InvocationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, int flags)
507 InvocationWriteReadCase (Context& context, const char* name, const char* desc, StorageType storage, int flags);
512 InvocationWriteReadCase::InvocationWriteReadCase (Context& context, const char* name, const char* desc, StorageType storage, int flags)
565 InvocationReadWriteCase (Context& context, const char* name, const char* desc, StorageType storage, int flags);
570 InvocationReadWriteCase::InvocationReadWriteCase (Context& context, const char* name, const char* desc, StorageType storage, int flags
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
array_internal.h 40 typedef T StorageType;
45 (kMaxUint32 - sizeof(ArrayHeader)) / sizeof(StorageType);
49 return sizeof(ArrayHeader) + sizeof(StorageType) * num_elements;
51 static Ref ToRef(StorageType* storage, size_t offset) {
54 static ConstRef ToConstRef(const StorageType* storage, size_t offset) {
61 typedef StructPointer<P> StorageType;
66 (kMaxUint32 - sizeof(ArrayHeader)) / sizeof(StorageType);
70 return sizeof(ArrayHeader) + sizeof(StorageType) * num_elements;
72 static Ref ToRef(StorageType* storage, size_t offset) {
75 static ConstRef ToConstRef(const StorageType* storage, size_t offset)
    [all...]
  /external/chromium_org/ppapi/utility/
completion_callback_factory.h 24 typedef T StorageType;
27 typedef T StorageType;
30 typedef T StorageType;
292 typename internal::TypeUnwrapper<Output>::StorageType>
295 typename internal::TypeUnwrapper<Output>::StorageType,
353 typename internal::TypeUnwrapper<Output>::StorageType>
357 typename internal::TypeUnwrapper<Output>::StorageType,
359 typename internal::TypeUnwrapper<A>::StorageType>(method, a));
426 typename internal::TypeUnwrapper<Output>::StorageType>
431 typename internal::TypeUnwrapper<Output>::StorageType,
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 179 DependentTemplateName *> StorageType;
181 StorageType Storage;
184 Storage = StorageType::getFromOpaqueValue(Ptr);
  /external/deqp/framework/common/
tcuFloat.hpp 51 typedef StorageType_ StorageType;
62 explicit Float (StorageType value);
69 static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias, Flags>& src) { return src; }
88 static inline Float construct (int sign, int exponent, StorageType mantissa);
103 static Float constructBits (int sign, int exponent, StorageType mantissaBits);
105 StorageType bits (void) const { return m_value; }
110 inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1)<<ExponentBits)-1); }
111 inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1);
    [all...]
  /external/deqp/modules/glshared/
glsShaderLibraryCase.hpp 70 enum StorageType
87 StorageType storageType;
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 159 llvm::Type *StorageType);
214 const FieldDecl *FD, CharUnits StartOffset, llvm::Type *StorageType) {
219 Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType);
281 llvm::Type *StorageType = nullptr;
303 if (!StorageType ||
304 getAlignment(FieldType) > getAlignment(StorageType) ||
305 (getAlignment(FieldType) == getAlignment(StorageType) &&
306 getSize(FieldType) > getSize(StorageType)))
307 StorageType = FieldType;
310 if (!StorageType)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
rtp_rtcp_defines.h 71 enum StorageType {
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Handle.h     [all...]
  /external/libmtp/src/
libmtp.h 709 uint16_t StorageType; /**< Storage type */
    [all...]
ptp.h 708 uint16_t StorageType;
    [all...]

Completed in 1973 milliseconds