Searched defs:storage (Results 151 - 175 of 620) sorted by relevance

1234567891011>>

/external/chromium_org/storage/browser/quota/
H A Dquota_client.h13 #include "storage/browser/storage_browser_export.h"
14 #include "storage/common/quota/quota_types.h"
17 namespace storage { namespace
20 // Each storage API must provide an implementation of this interface and
47 // Gets the amount of data stored in the storage specified by
55 // Returns a list of origins that has data in the |type| storage.
79 } // namespace storage
H A Dquota_task.cc5 #include "storage/browser/quota/quota_task.h"
18 namespace storage { namespace
79 } // namespace storage
H A Dquota_task.h14 #include "storage/browser/storage_browser_export.h"
21 namespace storage { namespace
H A Dspecial_storage_policy.cc5 #include "storage/browser/quota/special_storage_policy.h"
7 namespace storage { namespace
38 } // namespace storage
H A Dstorage_observer.cc5 #include "storage/browser/quota/storage_observer.h"
7 namespace storage { namespace
65 } // namespace storage
H A Dstorage_observer.h10 #include "storage/browser/quota/quota_client.h"
11 #include "storage/common/quota/quota_types.h"
14 namespace storage { namespace
16 // This interface is implemented by observers that wish to monitor storage
21 // The storage type to monitor. This must not be kStorageTypeUnknown or
37 // The rate at which storage events will be fired. Events will be fired at
38 // approximately this rate, or when a storage status change has been
56 // The storage type and origin monitored.
70 // Will be called on the IO thread when a storage event occurs.
77 } // namespace storage
[all...]
/external/chromium_org/storage/common/blob/
H A Dscoped_file.cc5 #include "storage/common/blob/scoped_file.h"
14 namespace storage { namespace
85 } // namespace storage
/external/chromium_org/storage/common/
H A Ddata_element.cc5 #include "storage/common/data_element.h"
7 namespace storage { namespace
49 } // namespace storage
/external/chromium_org/storage/common/database/
H A Ddatabase_connections.h15 #include "storage/common/storage_common_export.h"
21 namespace storage { namespace
97 } // namespace storage
H A Ddatabase_identifier.h12 #include "storage/common/storage_common_export.h"
15 namespace storage { namespace
52 } // namespace storage
/external/chromium_org/storage/common/quota/
H A Dquota_types.h8 #include "storage/common/quota/quota_status_code.h"
10 namespace storage { namespace
28 } // namespace storage
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.h46 AudioChannel(float* storage, size_t length) argument
48 , m_rawPointer(storage)
53 // Manage storage for us.
71 // storage represents external memory not managed by this object.
72 void set(float* storage, size_t length) argument
74 m_memBuffer.clear(); // cleanup managed storage
75 m_rawPointer = storage;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DImageD3D.h36 virtual void setManagedSurface2D(TextureStorage *storage, int level) {}; argument
37 virtual void setManagedSurfaceCube(TextureStorage *storage, int face, int level) {}; argument
38 virtual void setManagedSurface3D(TextureStorage *storage, int level) {}; argument
39 virtual void setManagedSurface2DArray(TextureStorage *storage, int layer, int level) {}; argument
40 virtual bool copyToStorage2D(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height) = 0;
41 virtual bool copyToStorageCube(TextureStorage *storage, int face, int level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height) = 0;
42 virtual bool copyToStorage3D(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth) = 0;
43 virtual bool copyToStorage2DArray(TextureStorage *storage, int level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height) = 0;
H A DIndexDataManager.h45 BufferD3D *storage; member in struct:rx::TranslatedIndexData
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dstorage_test_runner.cc18 StorageTestRunner::StorageTestRunner(Storage* storage) argument
19 : storage_(storage),
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dondemand_supplier.cc31 OndemandSupplier::OndemandSupplier(const Source* source, Storage* storage) argument
32 : retriever_(new Retriever(source, storage)) {
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dcopy_constant_to_storage_tests.cpp32 copy_constant_to_storage(union gl_constant_value *storage,
49 gl_constant_value storage[17]; member in class:copy_constant_to_storage
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
73 fill_storage_array_with_sentinels(storage,
77 linker::copy_constant_to_storage(storage,
82 verify_data(storage, 0, val, red_zone_size);
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
92 fill_storage_array_with_sentinels(storage,
96 linker::copy_constant_to_storage(storage,
101 verify_data(storage,
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRasterizer.cpp18 SkIRect storage; local
30 storage = *clipBounds;
31 storage.inset(-margin.fX, -margin.fY);
32 clipBounds = &storage;
/external/chromium_org/third_party/skia/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
/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...]
/external/mesa3d/src/glsl/tests/
H A Dcopy_constant_to_storage_tests.cpp32 copy_constant_to_storage(union gl_constant_value *storage,
49 gl_constant_value storage[17]; member in class:copy_constant_to_storage
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
73 fill_storage_array_with_sentinels(storage,
77 linker::copy_constant_to_storage(storage,
82 verify_data(storage, 0, val, red_zone_size);
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
92 fill_storage_array_with_sentinels(storage,
96 linker::copy_constant_to_storage(storage,
101 verify_data(storage,
[all...]
/external/skia/src/core/
H A DSkRasterizer.cpp18 SkIRect storage; local
30 storage = *clipBounds;
31 storage.inset(-margin.fX, -margin.fY);
32 clipBounds = &storage;
/external/skia/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.h15 #include "storage/browser/fileapi/file_system_operation_runner.h"
24 namespace storage { namespace
68 storage::FileSystemContext* GetFileSystemContextForExtensionId(
74 storage::FileSystemContext* GetFileSystemContextForRenderViewHost(
130 scoped_refptr<storage::FileSystemContext> file_system_context,
132 const storage::FileSystemOperationRunner::StatusCallback& callback);
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dentry_watcher_service.h17 #include "storage/browser/fileapi/file_system_url.h"
18 #include "storage/browser/fileapi/watcher_manager.h"
24 namespace storage { namespace
26 } // namespace storage
35 public storage::WatcherManager::Observer {
41 typedef base::Callback<storage::FileSystemContext*(
51 const storage::FileSystemURL& url,
53 const storage::WatcherManager::StatusCallback& callback);
57 const storage::FileSystemURL& url,
58 const storage
[all...]

Completed in 428 milliseconds

1234567891011>>