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

123456

/external/chromium_org/third_party/skia/bench/
H A DBenchmark.h64 virtual bool isSuitableFor(Backend backend) { argument
65 return backend != kNonRendering_Backend;
H A DETCBitmapBench.cpp122 ETCBitmapBench(bool decompress, Backend backend) argument
123 : fDecompress(decompress), fBackend(backend) { }
125 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
126 return backend == this->fBackend;
176 Backend backend() const { return fBackend; } function in class:ETCBitmapBench
188 ETCBitmapUploadBench(bool decompress, Backend backend) argument
189 : ETCBitmapBench(decompress, backend) { }
193 if (kGPU_Backend == this->backend()) {
200 SkASSERT(kRaster_Backend == this->backend());
/external/chromium_org/third_party/skia/dm/
H A DDMQuiltTask.cpp15 static SkString suffix(QuiltTask::Backend backend, QuiltTask::BBH bbh) { argument
18 return SkStringPrintf("%s-%s", kBackends[backend], kBBHs[bbh]);
22 QuiltTask::BBH bbh, QuiltTask::Backend backend)
25 , fBackend(backend)
26 , fName(UnderJoin(parent.name().c_str(), suffix(backend, bbh).c_str()))
21 QuiltTask(const Task& parent, skiagm::GM* gm, SkBitmap reference, QuiltTask::BBH bbh, QuiltTask::Backend backend) argument
/external/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp26 DummySyntheticFrontEnd(ValueObject &backend) : argument
27 SyntheticChildrenFrontEnd(backend)
174 // let our backend do its update
/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.cc60 scoped_refptr<ShortcutsBackend> backend = local
62 if (backend.get()) {
63 backend->AddObserver(this);
64 if (backend->initialized())
102 scoped_refptr<ShortcutsBackend> backend = local
104 if (backend.get()) // Can be NULL in Incognito.
105 backend->DeleteShortcutsWithURL(url);
121 scoped_refptr<ShortcutsBackend> backend = local
123 if (backend.get())
124 backend
132 scoped_refptr<ShortcutsBackend> backend = local
365 FindFirstMatch(const base::string16& keyword, ShortcutsBackend* backend) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.cc304 storage::ExternalFileSystemBackend* backend = local
308 if (!backend)
311 // Find if this file path is managed by the external backend.
312 if (!backend->GetVirtualPath(absolute_path, virtual_path))
354 storage::ExternalFileSystemBackend* backend = local
356 DCHECK(backend);
357 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/sync/
H A Dprofile_sync_components_factory_impl.cc422 SyncBackendHost* backend,
428 backend,
417 CreateDataTypeManager( const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>& debug_info_listener, const DataTypeController::TypeMap* controllers, const sync_driver::DataTypeEncryptionHandler* encryption_handler, SyncBackendHost* backend, DataTypeManagerObserver* observer) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsync_file_system_backend.cc91 SyncFileSystemBackend* backend = new SyncFileSystemBackend(NULL); local
92 backend->skip_initialize_syncfs_service_for_testing_ = true;
93 return backend;
H A Dsyncable_file_system_operation.cc356 SyncFileSystemBackend* backend = local
358 DCHECK(backend);
359 if (!backend->sync_context()) {
367 operation_runner_ = backend->sync_context()->operation_runner();
/external/chromium_org/content/browser/appcache/
H A Dappcache_request_handler.cc184 AppCacheBackendImpl* backend = host_->service()->GetBackend(old_process_id);
185 host_for_cross_site_transfer_ = backend->TransferHostOut(host_->host_id());
194 AppCacheBackendImpl* backend = host_->service()->GetBackend(new_process_id); local
195 backend->TransferHostIn(new_host_id, host_for_cross_site_transfer_.Pass());
/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.cc58 AppCacheBackend* backend)
60 backend_(backend),
67 DCHECK(client && backend && (host_id_ != kAppCacheNoHostId));
56 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/disk_cache/memory/
H A Dmem_backend_impl.cc186 explicit MemIterator(base::WeakPtr<MemBackendImpl> backend) argument
187 : backend_(backend), current_(NULL) {
/external/chromium_org/net/http/
H A Ddisk_based_cert_cache_unittest.cc38 // MockTransactions are required to use the MockDiskCache backend.
122 // Stores the certificate corresponding to |cert_data| in |backend|. If
125 void ImportCert(disk_cache::Backend* backend, argument
131 backend->CreateEntry(cert_data.cache_key, &entry, callback.callback());
156 // correctly cached entry in |backend|.
157 void CheckCertCached(disk_cache::Backend* backend, argument
161 int rv = backend->OpenEntry(cert_data.cache_key, &entry, callback.callback());
193 MockDiskCache backend; local
194 DiskBasedCertCache cache(&backend);
203 ASSERT_NO_FATAL_FAILURE(CheckCertCached(&backend, kCert
210 MockDiskCache backend; local
230 MockDiskCache backend; local
248 MockDiskCache backend; local
267 MockDiskCache backend; local
283 MockDiskCache backend; local
298 MockDiskCache backend; local
327 MockDiskCache backend; local
349 MockDiskCache backend; local
372 MockDiskCache backend; local
415 MockDiskCache backend; local
441 MockDiskCache backend; local
467 MockDiskCache backend; local
486 MockDiskCache backend; local
508 MockDiskCache backend; local
[all...]
H A Dmock_http_cache.h160 scoped_ptr<disk_cache::Backend>* backend,
193 // Helper function to synchronously open a backend entry.
196 // Helper function to synchronously create a backend entry.
220 scoped_ptr<disk_cache::Backend>* backend,
224 // This backend factory allows us to control the backend instantiation.
231 scoped_ptr<disk_cache::Backend>* backend,
234 // Completes the backend creation. Any blocked call will be notified via the
238 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/printing/
H A Dprinting_context_win.cc11 #include "printing/backend/print_backend.h"
12 #include "printing/backend/win_helper.h"
55 scoped_refptr<PrintBackend> backend = PrintBackend::CreateInstance(NULL); local
57 base::UTF8ToWide(backend->GetDefaultPrinterName());

Completed in 6078 milliseconds

123456