HomeSort by relevance Sort by last modified time
    Searched refs:storage (Results 226 - 250 of 1526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/storage/common/fileapi/
directory_entry.h 13 #include "storage/common/storage_common_export.h"
15 namespace storage { namespace
36 } // namespace storage
file_system_mount_option.h 8 namespace storage { namespace
35 } // namespace storage
  /external/chromium_org/storage/common/quota/
quota_status_code.h 8 #include "storage/common/storage_common_export.h"
11 namespace storage { namespace
26 } // namespace storage
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowEventHandlers.h 47 DEFINE_STATIC_WINDOW_ATTRIBUTE_EVENT_LISTENER(storage);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
Canvas2DContextAttributes.h 52 String storage() const;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioChannel.h 46 AudioChannel(float* storage, size_t length)
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)
74 m_memBuffer.clear(); // cleanup managed storage
75 m_rawPointer = storage;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
IndexDataManager.cpp 82 BufferD3D *storage = NULL; local
88 storage = BufferD3D::makeBufferD3D(buffer->getImplementation());
98 ASSERT(typeInfo.bytes * static_cast<unsigned int>(count) + offset <= storage->getSize());
100 indices = static_cast<const GLubyte*>(storage->getData()) + offset;
103 StaticIndexBufferInterface *staticBuffer = storage ? storage->getStaticIndexBuffer() : NULL;
105 bool directStorage = alignedOffset && storage && storage->supportsDirectBinding() &&
155 convertCount = storage->getSize() / typeInfo.bytes;
159 storage->invalidateStaticData()
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
null_storage.h 17 // the Storage interface therefore doesn't actually store anything.
22 #include <libaddressinput/storage.h>
30 class NullStorage : public Storage {
  /external/chromium_org/third_party/skia/src/core/
SkRasterizer.cpp 18 SkIRect storage; local
30 storage = *clipBounds;
31 storage.inset(-margin.fX, -margin.fY);
32 clipBounds = &storage;
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.storage/
Android.mk 17 test_makefile := external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.storage/Android.mk
19 test_name := input.output/iostreams.base/ios.base/ios.base.storage/iword
23 test_name := input.output/iostreams.base/ios.base/ios.base.storage/xalloc
27 test_name := input.output/iostreams.base/ios.base/ios.base.storage/pword
  /external/chromium_org/content/browser/service_worker/
service_worker_cache.h 21 namespace storage { namespace
50 scoped_ptr<storage::BlobDataHandle>)>
58 base::WeakPtr<storage::BlobStorageContext> blob_context);
62 base::WeakPtr<storage::BlobStorageContext> blob_context);
102 base::WeakPtr<storage::BlobStorageContext> blob_context);
110 scoped_ptr<storage::BlobDataHandle> blob_data_handle,
135 base::WeakPtr<storage::BlobStorageContext> blob_storage_context_;
  /external/chromium_org/storage/browser/fileapi/
file_system_file_stream_reader.cc 5 #include "storage/browser/fileapi/file_system_file_stream_reader.h"
12 #include "storage/browser/blob/file_stream_reader.h"
13 #include "storage/browser/fileapi/file_system_context.h"
14 #include "storage/browser/fileapi/file_system_operation_runner.h"
16 using storage::FileStreamReader;
20 namespace storage { namespace
23 storage::FileSystemContext* file_system_context,
24 const storage::FileSystemURL& url,
27 return new storage::FileSystemFileStreamReader(
31 } // namespace storage
33 namespace storage { namespace
    [all...]
file_system_quota_client.cc 5 #include "storage/browser/fileapi/file_system_quota_client.h"
20 #include "storage/browser/fileapi/file_system_context.h"
21 #include "storage/browser/fileapi/file_system_quota_util.h"
22 #include "storage/browser/fileapi/file_system_usage_cache.h"
23 #include "storage/browser/fileapi/sandbox_file_system_backend.h"
24 #include "storage/common/fileapi/file_system_util.h"
27 using storage::StorageType;
29 namespace storage { namespace
60 void DidGetOrigins(const storage::QuotaClient::GetOriginsCallback& callback,
65 storage::QuotaStatusCode DeleteOriginOnFileTaskRunner
    [all...]
file_system_backend.h 16 #include "storage/browser/fileapi/file_permission_policy.h"
17 #include "storage/browser/fileapi/open_file_system_mode.h"
18 #include "storage/browser/fileapi/task_runner_bound_observer_list.h"
19 #include "storage/browser/storage_browser_export.h"
20 #include "storage/common/fileapi/file_system_types.h"
24 namespace storage { namespace
120 virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
157 // TODO(satorux): Move this out of 'storage/browser/fileapi'. crbug.com/257279
163 virtual bool IsAccessAllowed(const storage::FileSystemURL& url) const = 0;
185 const storage::FileSystemURL& url
    [all...]
  /external/opencv/cvaux/src/
extendededges.cpp 47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
52 CvMemStorage* storage )
54 CvMemStorage* tmp_storage = cvCreateChildMemStorage( storage );
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/)
134 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer );
166 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer );
  /external/chromium_org/content/browser/appcache/
appcache_service_impl.h 22 #include "storage/browser/quota/quota_manager_proxy.h"
33 namespace storage { namespace
35 } // namespace storage
47 // Refcounted container to manage the lifetime of the old storage instance
52 AppCacheStorage* storage() const { return storage_.get(); } function in class:content::AppCacheStorageReference
56 AppCacheStorageReference(scoped_ptr<AppCacheStorage> storage);
72 // the lifetime of the old storage instance is a delicate process.
81 explicit AppCacheServiceImpl(storage::QuotaManagerProxy* quota_manager_proxy);
153 storage::SpecialStoragePolicy* special_storage_policy() const {
156 void set_special_storage_policy(storage::SpecialStoragePolicy* policy)
175 AppCacheStorage* storage() const { return storage_.get(); } function in class:content::AppCacheServiceImpl
    [all...]
  /external/chromium_org/content/browser/
child_process_security_policy_impl.h 19 #include "storage/common/fileapi/file_system_types.h"
27 namespace storage { namespace
146 bool CanReadFileSystemFile(int child_id, const storage::FileSystemURL& url);
147 bool CanWriteFileSystemFile(int child_id, const storage::FileSystemURL& url);
148 bool CanCreateFileSystemFile(int child_id, const storage::FileSystemURL& url);
150 const storage::FileSystemURL& url);
152 const storage::FileSystemURL& url);
153 bool CanDeleteFileSystemFile(int child_id, const storage::FileSystemURL& url);
179 // storage::FilePermissionPolicy.
180 void RegisterFileSystemPermissionPolicy(storage::FileSystemType type
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
encode.cc 68 void EncodeVarLenUint8(int n, int* storage_ix, uint8_t* storage) {
70 WriteBits(1, 0, storage_ix, storage);
72 WriteBits(1, 1, storage_ix, storage);
74 WriteBits(3, nbits, storage_ix, storage);
76 WriteBits(nbits, n - (1 << nbits), storage_ix, storage);
146 int* storage_ix, uint8_t* storage) {
147 WriteBits(1, is_last, storage_ix, storage);
150 WriteBits(1, 1, storage_ix, storage);
153 WriteBits(1, 0, storage_ix, storage);
160 WriteBits(2, (num_bits - 13) >> 2, storage_ix, storage);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
fileapi_util.h 15 #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/sync_file_system/
sync_file_system_api.cc 24 #include "storage/browser/fileapi/file_system_context.h"
25 #include "storage/browser/fileapi/file_system_url.h"
26 #include "storage/browser/quota/quota_manager.h"
27 #include "storage/common/fileapi/file_system_types.h"
28 #include "storage/common/fileapi/file_system_util.h"
71 scoped_refptr<storage::FileSystemContext> file_system_context =
75 storage::FileSystemURL file_system_url(
81 Bind(&storage::FileSystemContext::DeleteFileSystem,
125 Bind(&storage::FileSystemContext::OpenFileSystem,
128 storage::kFileSystemTypeSyncable
    [all...]
  /external/chromium_org/chrome/browser/prefs/tracked/
dictionary_hash_store_contents.cc 21 explicit MutablePreferenceMacDictionary(base::DictionaryValue* storage);
33 base::DictionaryValue* storage)
34 : storage_(storage) {
51 base::DictionaryValue* storage)
52 : storage_(storage) {
  /external/chromium_org/content/public/test/
mock_storage_client.h 16 #include "storage/browser/quota/quota_client.h"
19 namespace storage { namespace
23 using storage::QuotaClient;
24 using storage::QuotaManagerProxy;
25 using storage::StorageType;
35 // Mock storage class for testing.
68 virtual bool DoesSupport(storage::StorageType type) const OVERRIDE;
  /external/chromium_org/storage/browser/fileapi/quota/
quota_backend_impl.h 10 #include "storage/browser/fileapi/quota/quota_reservation_manager.h"
11 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h"
12 #include "storage/browser/storage_browser_export.h"
13 #include "storage/common/quota/quota_status_code.h"
23 namespace storage { namespace
27 namespace storage { namespace
42 storage::QuotaManagerProxy* quota_manager_proxy);
80 storage::QuotaStatusCode status,
97 scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_;
104 } // namespace storage
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
retriever.cc 19 #include <libaddressinput/storage.h>
40 ValidatingStorage* storage)
43 storage_(storage),
63 // Validating storage returns (false, key, stale-data) for valid but stale
80 data = NULL; // Deleted by Storage::Put().
96 const scoped_ptr<const Storage::Callback> validated_data_ready_;
104 Retriever::Retriever(const Source* source, Storage* storage)
105 : source_(source), storage_(new ValidatingStorage(storage)) {
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database_unittest.cc 42 // as far as the DOM Storage db is concerned.
52 // as far as the DOM Storage db is concerned.
120 DOMStorageValuesMap storage; local
121 CreateMapWithValues(&storage);
128 ASSERT_TRUE(db.CommitChanges(false, storage));
138 EXPECT_EQ(storage.size(), values.size());
142 storage.clear();
146 ASSERT_TRUE(db.CommitChanges(true, storage));
152 CreateMapWithValues(&storage);
155 ASSERT_TRUE(db.CommitChanges(false, storage));
241 DOMStorageValuesMap storage; local
251 DOMStorageValuesMap storage; local
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>