Searched defs:backend (Results 51 - 75 of 130) sorted by relevance

123456

/external/skia/bench/
H A DBenchmark.h63 virtual bool isSuitableFor(Backend backend) { argument
64 return backend != kNonRendering_Backend;
H A DETCBitmapBench.cpp125 ETCBitmapBench(bool decompress, Backend backend) argument
126 : fDecompress(decompress), fBackend(backend) { }
128 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
129 return backend == this->fBackend;
179 Backend backend() const { return fBackend; } function in class:ETCBitmapBench
191 ETCBitmapUploadBench(bool decompress, Backend backend) argument
192 : ETCBitmapBench(decompress, backend) { }
196 if (kGPU_Backend == this->backend()) {
203 SkASSERT(kRaster_Backend == this->backend());
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_backend_unittest.cc142 ShortcutsBackend* backend = local
144 ASSERT_TRUE(backend);
H A Dshortcuts_provider.cc61 scoped_refptr<ShortcutsBackend> backend = local
63 if (backend.get()) {
64 backend->AddObserver(this);
65 if (backend->initialized())
104 scoped_refptr<ShortcutsBackend> backend = local
106 if (backend) // Can be NULL in Incognito.
107 backend->DeleteShortcutsWithURL(url);
123 scoped_refptr<ShortcutsBackend> backend = local
125 if (backend.get())
126 backend
134 scoped_refptr<ShortcutsBackend> backend = local
376 FindFirstMatch(const base::string16& keyword, ShortcutsBackend* backend) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.cc304 fileapi::ExternalFileSystemBackend* backend = local
307 if (!backend)
310 // Find if this file path is managed by the external backend.
311 if (!backend->GetVirtualPath(absolute_path, virtual_path))
353 fileapi::ExternalFileSystemBackend* backend = local
355 DCHECK(backend);
356 backend->GrantFullAccessToExtension(kFileManagerAppId);
/external/chromium_org/chrome/browser/history/
H A Din_memory_url_index.cc70 HistoryBackend* backend,
69 RunOnDBThread( HistoryBackend* backend, HistoryDatabase* db) argument
/external/chromium_org/chrome/browser/sessions/
H A Dsession_service_unittest.cc167 SessionBackend* backend() { return helper_.backend(); } function in class:SessionServiceTest
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsync_file_system_backend.cc89 SyncFileSystemBackend* backend = new SyncFileSystemBackend(NULL); local
90 backend->skip_initialize_syncfs_service_for_testing_ = true;
91 return backend;
H A Dsyncable_file_system_operation.cc361 SyncFileSystemBackend* backend = local
363 DCHECK(backend);
364 if (!backend->sync_context()) {
372 operation_runner_ = backend->sync_context()->operation_runner();
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_file_validator_unittest.cc97 TestFileSystemBackend* backend = static_cast<TestFileSystemBackend*>( local
99 backend->InitializeCopyOrMoveFileValidatorFactory(factory.Pass());
/external/chromium_org/content/child/appcache/
H A Dweb_application_cache_host_impl.cc60 AppCacheBackend* backend)
62 backend_(backend),
69 DCHECK(client && backend && (host_id_ != appcache::kAppCacheNoHostId));
58 WebApplicationCacheHostImpl( WebApplicationCacheHostClient* client, AppCacheBackend* backend) argument
/external/chromium_org/net/disk_cache/blockfile/
H A Deviction.cc84 void Eviction::Init(BackendImpl* backend) { argument
85 // We grab a bunch of info from the backend to make the code a little cleaner
87 backend_ = backend;
88 rankings_ = &backend->rankings_;
91 index_size_ = backend->mask_ + 1;
92 new_eviction_ = backend->new_eviction_;
102 // It is possible for the backend initialization to fail, in which case this
H A Deviction_v3.cc88 void EvictionV3::Init(BackendImplV3* backend) { argument
89 // We grab a bunch of info from the backend to make the code a little cleaner
91 backend_ = backend;
95 lru_ = backend->lru_eviction_;
105 // It is possible for the backend initialization to fail, in which case this
H A Dindex_table_v3_unittest.cc672 MockIndexBackend backend; local
674 IndexTable index(&backend);
686 EXPECT_TRUE(backend.grow_called());
693 MockIndexBackend backend; local
695 IndexTable index(&backend);
705 EXPECT_EQ(expected, backend.buffer_len());
/external/chromium_org/net/http/
H A Dmock_http_cache.h161 scoped_ptr<disk_cache::Backend>* backend,
191 // Helper function to synchronously open a backend entry.
194 // Helper function to synchronously create a backend entry.
218 scoped_ptr<disk_cache::Backend>* backend,
222 // This backend factory allows us to control the backend instantiation.
229 scoped_ptr<disk_cache::Backend>* backend,
232 // Completes the backend creation. Any blocked call will be notified via the
236 scoped_ptr<disk_cache::Backend>* backend() { return backend_; } function in class:MockBlockingBackendFactory
/external/chromium_org/net/tools/crash_cache/
H A Dcrash_cache.cc143 disk_cache::BackendImpl* backend = new disk_cache::BackendImpl( local
145 backend->SetMaxSize(size);
146 backend->SetType(net::DISK_CACHE);
147 backend->SetFlags(disk_cache::kNoRandom);
148 int rv = backend->Init(cb->callback());
149 *cache = backend;
/external/chromium_org/net/tools/disk_cache_memory_test/
H A Ddisk_cache_memory_test.cc91 scoped_ptr<Backend> backend; local
100 base::MessageLoopProxy::current(), NULL, &backend, callback);
106 LOG(ERROR) << "Could not initialize backend in "
118 static_cast<SimpleBackendImpl*>(backend.get());
131 DCHECK(backend);
132 result.swap(backend);
231 scoped_ptr<Backend> backend = CreateAndInitBackend(**it); local
232 if (!backend)
235 << " : " << backend->GetEntryCount() << std::endl;
236 backends.push_back(backend
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursor.cpp51 IDBCursor* IDBCursor::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
53 return new IDBCursor(backend, direction, request, source, transaction);
80 IDBCursor::IDBCursor(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
81 : m_backend(backend)
H A DIDBRequest.cpp254 void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, IDBKey* key, IDBKey* primaryKey, PassRefPtr<SharedBuffer> value, PassOwnPtr<Vector<blink::WebBlobInfo> > blobInfo) argument
264 cursor = IDBCursor::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get());
267 cursor = IDBCursorWithValue::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get());
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabase.cpp60 PassRefPtrWillBeRawPtr<Database> Database::create(ExecutionContext*, PassRefPtrWillBeRawPtr<DatabaseBackendBase> backend) argument
62 // FIXME: Currently, we're only simulating the backend by return the
63 // frontend database as its own the backend. When we split the 2 apart,
65 // instantiating the backend.
66 return static_cast<Database*>(backend.get());
92 Database* Database::from(DatabaseBackend* backend) argument
94 return static_cast<Database*>(backend->m_frontend);
97 PassRefPtrWillBeRawPtr<DatabaseBackend> Database::backend() function in class:WebCore::Database
149 RefPtrWillBeRawPtr<SQLTransactionBackend> transactionBackend = backend()->runTransaction(transaction, readOnly, changeVersionData);
244 backend()
[all...]
H A DDatabaseManager.cpp186 RefPtrWillBeRawPtr<DatabaseBackendBase> backend = m_server->openDatabase( local
187 databaseContextFor(context)->backend(), type, name, expectedVersion,
190 if (!backend) {
207 return backend.release();
218 RefPtrWillBeRawPtr<DatabaseBackendBase> backend = openDatabaseBackend(context, DatabaseType::Async, name, local
220 if (!backend)
223 RefPtrWillBeRawPtr<Database> database = Database::create(context, backend);
228 if (backend->isNew() && creationCallback.get()) {
246 RefPtrWillBeRawPtr<DatabaseBackendBase> backend = openDatabaseBackend(context, DatabaseType::Sync, name, local
248 if (!backend)
[all...]
H A DSQLTransaction.cpp44 #include "modules/webdatabase/SQLTransactionClient.h" // FIXME: Should be used in the backend only.
97 void SQLTransaction::setBackend(AbstractSQLTransactionBackend* backend) argument
100 m_backend = backend;
127 // requestTransitToState() can be called from the backend. Hence, it should
177 // If we get here with an empty m_transactionError, then the backend
179 // Hence, it's thread safe to fetch the backend transactionError without
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
H A Ddxgi_dll.c223 struct WineDXGIBackend* backend = HeapAlloc(GetProcessHeap(), 0, sizeof(struct WineDXGIBackend)); local
224 backend->ref = 1;
225 backend->vtbl_IGalliumDXGIBackend = &WineDXGIBackend_vtbl;
226 return (IGalliumDXGIBackend*)backend;
231 IGalliumDXGIBackend* backend = new_WineDXGIBackend(); local
241 GalliumDXGIUseX11Display(dpy, backend);
244 backend->lpVtbl->Release(backend);
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dandroid.py19 import gyp.generator.make as make # Reuse global functions from make backend. namespace
109 """Convert a path to its source directory form. The Android backend does not
963 # The android backend only supports the default configuration.
994 'The Android backend does not support options.generator_output.')
1016 'The Android backend does not support options.generator_output.')
/external/chromium_org/webkit/browser/appcache/
H A Dappcache_request_handler.cc177 AppCacheBackendImpl* backend = host_->service()->GetBackend(old_process_id);
178 host_for_cross_site_transfer_ = backend->TransferHostOut(host_->host_id());
187 AppCacheBackendImpl* backend = host_->service()->GetBackend(new_process_id); local
188 backend->TransferHostIn(new_host_id, host_for_cross_site_transfer_.Pass());

Completed in 608 milliseconds

123456