Searched refs:storage (Results 276 - 300 of 1558) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/sandbox/win/src/
H A Dresolver_32.cc63 bool ResolverThunk::SetInternalThunk(void* storage, size_t storage_bytes, argument
69 InternalThunk* thunk = new(storage) InternalThunk;
H A Dresolver_64.cc54 bool ResolverThunk::SetInternalThunk(void* storage, size_t storage_bytes, argument
60 InternalThunk* thunk = new(storage) InternalThunk;
/external/chromium_org/storage/browser/fileapi/
H A Dtransient_file_util.cc5 #include "storage/browser/fileapi/transient_file_util.h"
11 #include "storage/browser/fileapi/file_system_operation_context.h"
12 #include "storage/browser/fileapi/file_system_url.h"
13 #include "storage/browser/fileapi/isolated_context.h"
15 using storage::ScopedFile;
17 namespace storage { namespace
55 } // namespace storage
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrivatePtr.h215 storage().assign(ptr);
218 void reset() { storage().release(); }
222 storage().assign(other.storage());
229 storage().assign(ptr);
233 T* get() const { return storage().get(); }
250 PtrStorage<T>& storage() { return PtrStorage<T>::fromSlot(&m_storage); } function in class:blink::WebPrivatePtr
251 const PtrStorage<T>& storage() const { return PtrStorage<T>::fromSlot(&m_storage); } function in class:blink::WebPrivatePtr
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_vector.c76 * \param storage pointer to storage for the vector's data
79 _mesa_vector4f_init( GLvector4f *v, GLbitfield flags, GLfloat (*storage)[4] )
83 v->data = storage;
84 v->start = (GLfloat *) storage;
91 * Initialize GLvector objects and allocate storage.
103 v->storage = _mesa_align_malloc( count * 4 * sizeof(GLfloat), alignment );
105 v->start = (GLfloat *) v->storage;
106 v->data = (GLfloat (*)[4]) v->storage;
114 * vector's storage fiel
[all...]
/external/chromium_org/third_party/skia/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_win.cc281 STGMEDIUM* storage = GetStorageForString(std::string()); local
283 GetRendererTaintCustomType().ToFormatEtc(), storage));
291 STGMEDIUM* storage = GetStorageForString(data); local
293 Clipboard::GetPlainTextWFormatType().ToFormatEtc(), storage));
296 storage = GetStorageForString(base::UTF16ToUTF8(data));
298 Clipboard::GetPlainTextFormatType().ToFormatEtc(), storage));
313 STGMEDIUM* storage = GetStorageForString(x_moz_url_str); local
315 Clipboard::GetMozUrlFormatType().ToFormatEtc(), storage));
325 storage = GetStorageForString(base::UTF8ToUTF16(url.spec()));
327 Clipboard::GetUrlWFormatType().ToFormatEtc(), storage));
341 STGMEDIUM* storage = GetStorageForFileName(path); local
357 STGMEDIUM* storage = GetStorageForFileName(filenames[i].path); local
367 STGMEDIUM* storage = GetStorageForBytes(data.data(), data.size()); local
376 STGMEDIUM* storage = GetStorageForFileDescriptor(filename); local
393 STGMEDIUM* storage = GetStorageForBytes(cf_html.c_str(), cf_html.size()); local
526 STGMEDIUM* storage = NULL; local
882 STGMEDIUM* storage = new STGMEDIUM; local
945 STGMEDIUM* storage = new STGMEDIUM; local
1022 STGMEDIUM* storage = new STGMEDIUM; local
1042 STGMEDIUM* storage = new STGMEDIUM; local
[all...]
/external/chromium_org/ui/file_manager/file_manager/audio_player/js/
H A Daudio_player_model.js21 * Prefix of the stored values in the storage.
27 * Save the values in the model into the storage.
36 chrome.storage.local.set(objectToBeSaved);
40 * Load the values in the model from the storage.
45 // Restores the values from the storage
51 chrome.storage.local.get(objectsToBeRead, function(result) {
71 // Restores the values from the storage
/external/mesa3d/src/mesa/math/
H A Dm_vector.c76 * \param storage pointer to storage for the vector's data
79 _mesa_vector4f_init( GLvector4f *v, GLbitfield flags, GLfloat (*storage)[4] )
83 v->data = storage;
84 v->start = (GLfloat *) storage;
91 * Initialize GLvector objects and allocate storage.
103 v->storage = _mesa_align_malloc( count * 4 * sizeof(GLfloat), alignment );
105 v->start = (GLfloat *) v->storage;
106 v->data = (GLfloat (*)[4]) v->storage;
114 * vector's storage fiel
[all...]
/external/skia/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
/external/skia/tools/pyutils/
H A Dgs_utils.py42 'http://storage.googleapis.com', source_bucket, source_path)
51 https://developers.google.com/storage/docs/json_api/v1/objects/list
62 storage = build_service('storage', 'v1')
63 command = storage.objects().list(
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dpicasa_file_util.cc21 #include "storage/browser/fileapi/file_system_operation_context.h"
22 #include "storage/browser/fileapi/file_system_url.h"
23 #include "storage/browser/fileapi/native_file_util.h"
24 #include "storage/common/fileapi/file_system_util.h"
27 using storage::DirectoryEntry;
28 using storage::FileSystemOperationContext;
29 using storage::FileSystemURL;
53 const storage::FileSystemURL& url) {
63 storage::VirtualPath::GetComponentsUTF8Unsafe(virtual_path, &result);
68 const storage
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc21 #include "storage/browser/blob/file_stream_reader.h"
22 #include "storage/browser/fileapi/copy_or_move_file_validator.h"
23 #include "storage/browser/fileapi/copy_or_move_operation_delegate.h"
24 #include "storage/browser/fileapi/file_stream_writer.h"
25 #include "storage/browser/fileapi/file_system_backend.h"
26 #include "storage/browser/fileapi/file_system_context.h"
27 #include "storage/browser/fileapi/file_system_operation.h"
28 #include "storage/browser/fileapi/file_system_url.h"
29 #include "storage/browser/quota/quota_manager.h"
30 #include "storage/commo
[all...]
/external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
H A Dfile_stream_reader.h13 #include "storage/browser/blob/file_stream_reader.h"
14 #include "storage/browser/fileapi/file_system_url.h"
24 class FileStreamReader : public storage::FileStreamReader {
32 FileStreamReader(storage::FileSystemContext* context,
33 const storage::FileSystemURL& url,
39 // storage::FileStreamReader overrides.
100 storage::FileSystemURL url_;
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dremote_change_processor_on_worker.cc34 const storage::FileSystemURL& url,
50 const storage::FileSystemURL& url,
66 const storage::FileSystemURL& url,
83 const storage::FileSystemURL& url,
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsync_file_metadata.h11 #include "storage/browser/fileapi/file_system_url.h"
34 storage::FileSystemURL url;
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_storage_manager.h25 namespace storage { namespace
73 base::WeakPtr<storage::BlobStorageContext> blob_storage_context);
91 base::WeakPtr<storage::BlobStorageContext> blob_storage_context() const {
107 base::WeakPtr<storage::BlobStorageContext> blob_context_;
/external/chromium_org/content/public/browser/
H A Drender_widget_host_view_frame_subscriber.h51 // Return true if the current frame should be captured. If so, |storage|
56 // Destination format is determined by |storage|, currently only
66 scoped_refptr<media::VideoFrame>* storage,
/external/chromium_org/content/test/
H A Dfileapi_test_file_set.h14 namespace storage { namespace
/external/chromium_org/storage/browser/blob/
H A Dblob_url_request_job_factory.cc5 #include "storage/browser/blob/blob_url_request_job_factory.h"
14 #include "storage/browser/blob/blob_data_handle.h"
15 #include "storage/browser/blob/blob_storage_context.h"
16 #include "storage/browser/blob/blob_url_request_job.h"
17 #include "storage/browser/fileapi/file_system_context.h"
19 namespace storage { namespace
52 storage::FileSystemContext* file_system_context,
64 return new storage::BlobURLRequestJob(request,
71 scoped_refptr<storage::BlobData> BlobProtocolHandler::LookupBlobData(
90 } // namespace storage
[all...]
/external/chromium_org/storage/browser/database/
H A Ddatabase_util.h10 #include "storage/browser/storage_browser_export.h"
17 namespace storage { namespace
37 } // namespace storage
/external/chromium_org/storage/common/fileapi/
H A Dfile_system_types.h10 namespace storage { namespace
23 // http://www.w3.org/TR/file-system-api/#temporary-vs.-persistent-storage
91 // cloud storage service.
119 // A filesystem that is mounted via the Privet storage protocol.
125 // A media filesystem such as MTP or PTP, mounted as a file storage not
135 } // namespace storage
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvas2DContextAttributes.h52 String storage() const;
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Dnull_storage.h22 #include <libaddressinput/storage.h>
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_uniform.h121 union gl_constant_value *storage; member in struct:gl_uniform_storage

Completed in 2621 milliseconds

<<11121314151617181920>>