Searched defs:Backend (Results 1 - 18 of 18) sorted by last modified time

/external/skia/bench/
H A DBenchmark.h54 enum Backend { enum in class:Benchmark
63 virtual bool isSuitableFor(Backend backend) {
/external/skia/gm/
H A Dgmmain.cpp132 enum Backend { enum
157 Backend fBackend;
349 const char renderModeDescriptor [], Backend backend) {
/external/llvm/include/llvm/MC/
H A DMCAssembler.h74 /// @name Assembler Backend Data
602 /// @name Assembler Backend Data
866 MCAsmBackend &Backend; member in class:llvm::MCAssembler
1037 MCAsmBackend &getBackend() const { return Backend; }
1184 /// @name Backend Data Access
/external/chromium_org/third_party/skia/bench/
H A DBenchmark.h55 enum Backend { enum in class:Benchmark
64 virtual bool isSuitableFor(Backend backend) {
/external/chromium_org/third_party/skia/dm/
H A DDMQuiltTask.h21 enum Backend { enum in class:DM::QuiltTask
29 BBH, Backend);
37 const Backend fBackend;
/external/chromium_org/third_party/skia/gm/
H A Dgmmain.cpp134 enum Backend { enum
158 Backend fBackend;
350 const char renderModeDescriptor [], Backend backend) {
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dbackends.py5 _backends = {} # Maps a string (backend name) to a |Backend| instance.
10 assert(isinstance(backend, Backend))
46 class Backend(object): class in inherits:object
/external/chromium_org/net/disk_cache/
H A Ddisk_cache.h35 class Backend;
37 // Returns an instance of a Backend of the given |type|. |path| points to a
60 scoped_ptr<Backend>* backend,
64 class NET_EXPORT Backend { class in namespace:disk_cache
92 // for a given Entry (as opposed to the Backend) will still generate a
94 virtual ~Backend() {}
215 // A Backend implementation can support sparse entries, so the cache keeps
239 // The Backend implementation is free to evict any range from the cache at any
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.cc62 class SQLiteChannelIDStore::Backend class in class:net::SQLiteChannelIDStore
63 : public base::RefCountedThreadSafe<SQLiteChannelIDStore::Backend> {
65 Backend( function in class:net::SQLiteChannelIDStore::Backend
93 friend class base::RefCountedThreadSafe<SQLiteChannelIDStore::Backend>;
96 virtual ~Backend() {
158 DISALLOW_COPY_AND_ASSIGN(Backend);
161 void SQLiteChannelIDStore::Backend::Load(
172 base::Bind(&Backend::LoadInBackground, this, channel_ids_ptr),
176 void SQLiteChannelIDStore::Backend::LoadInBackground(
200 base::Bind(&SQLiteChannelIDStore::Backend
[all...]
/external/chromium_org/sync/api/attachments/
H A Dfake_attachment_store.cc17 // Backend is where all the work happens.
18 class FakeAttachmentStore::Backend class in class:syncer::FakeAttachmentStore
19 : public base::RefCountedThreadSafe<FakeAttachmentStore::Backend> {
21 // Construct a Backend that posts its results to |frontend_task_runner|.
22 Backend(
30 friend class base::RefCountedThreadSafe<Backend>;
32 ~Backend();
38 FakeAttachmentStore::Backend::Backend( function in class:syncer::FakeAttachmentStore::Backend
42 FakeAttachmentStore::Backend
[all...]
/external/chromium_org/extensions/browser/value_store/
H A Dvalue_store_frontend.cc16 class ValueStoreFrontend::Backend : public base::RefCountedThreadSafe<Backend> { class in class:ValueStoreFrontend
18 Backend() : storage_(NULL) {} function in class:ValueStoreFrontend::Backend
23 TRACE_EVENT0("ValueStoreFrontend::Backend", "Init");
51 base::Bind(&ValueStoreFrontend::Backend::RunCallback,
72 friend class base::RefCountedThreadSafe<Backend>;
74 virtual ~Backend() {
94 DISALLOW_COPY_AND_ASSIGN(Backend);
98 : backend_(new Backend()) {
102 : backend_(new Backend()) {
[all...]
/external/chromium_org/google_apis/gcm/engine/
H A Dgcm_store_impl.cc123 class GCMStoreImpl::Backend class in class:gcm::GCMStoreImpl
124 : public base::RefCountedThreadSafe<GCMStoreImpl::Backend> {
126 Backend(const base::FilePath& path,
171 friend class base::RefCountedThreadSafe<Backend>;
172 ~Backend();
191 GCMStoreImpl::Backend::Backend( function in class:gcm::GCMStoreImpl::Backend
200 GCMStoreImpl::Backend::~Backend() {}
202 void GCMStoreImpl::Backend
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_image_data_impl.h36 class Backend { class in class:content::PPB_ImageData_Impl
38 virtual ~Backend() {};
106 scoped_ptr<Backend> backend_;
111 class ImageDataPlatformBackend : public PPB_ImageData_Impl::Backend {
118 // PPB_ImageData_Impl::Backend implementation.
148 class ImageDataSimpleBackend : public PPB_ImageData_Impl::Backend {
153 // PPB_ImageData_Impl::Backend implementation.
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_service.cc52 class ComponentCloudPolicyService::Backend class in class:policy::ComponentCloudPolicyService
59 Backend(base::WeakPtr<ComponentCloudPolicyService> service,
65 virtual ~Backend();
105 DISALLOW_COPY_AND_ASSIGN(Backend);
108 ComponentCloudPolicyService::Backend::Backend( function in class:policy::ComponentCloudPolicyService::Backend
122 ComponentCloudPolicyService::Backend::~Backend() {}
124 void ComponentCloudPolicyService::Backend::SetCredentials(
135 void ComponentCloudPolicyService::Backend
[all...]
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store.cc53 // delegates to Backend::Load, which posts a Backend::LoadAndNotifyOnDBThread
54 // task to the background runner. This task calls Backend::ChainLoadCookies(),
56 // in separate tasks. When this is complete, Backend::CompleteLoadOnIOThread is
61 // LoadCookiesForKey, it is delegated to Backend::LoadCookiesForKey, which posts
62 // Backend::LoadKeyAndNotifyOnDBThread to the BG runner. That routine loads just
63 // that single domain key (eTLD+1)'s cookies, and posts a Backend::
71 class SQLitePersistentCookieStore::Backend class in class:content::SQLitePersistentCookieStore
72 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
74 Backend( function in class:content::SQLitePersistentCookieStore::Backend
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dboot_times_loader.h96 // BootTimesLoader calls into the Backend on the file thread to load
98 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::BootTimesLoader
100 Backend() {} function in class:chromeos::BootTimesLoader::Backend
103 friend class base::RefCountedThreadSafe<Backend>;
105 ~Backend() {}
107 DISALLOW_COPY_AND_ASSIGN(Backend);
174 scoped_refptr<Backend> backend_;
H A Dversion_loader.h61 // VersionLoader calls into the Backend in the blocking thread pool to load
63 class Backend : public base::RefCountedThreadSafe<Backend> { class in class:chromeos::VersionLoader
65 Backend() {} function in class:chromeos::VersionLoader::Backend
76 friend class base::RefCountedThreadSafe<Backend>;
78 ~Backend() {}
80 DISALLOW_COPY_AND_ASSIGN(Backend);
86 scoped_refptr<Backend> backend_;
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base.cc41 // Backend for the CloudExternalDataManagerBase that handles all data download,
43 class CloudExternalDataManagerBase::Backend { class in class:policy::CloudExternalDataManagerBase
49 Backend(const GetChromePolicyDetailsCallback& get_policy_details,
145 DISALLOW_COPY_AND_ASSIGN(Backend);
148 CloudExternalDataManagerBase::Backend::Backend( function in class:policy::CloudExternalDataManagerBase::Backend
158 void CloudExternalDataManagerBase::Backend::SetExternalDataStore(
165 void CloudExternalDataManagerBase::Backend::Connect(
178 void CloudExternalDataManagerBase::Backend::Disconnect() {
182 void CloudExternalDataManagerBase::Backend
[all...]

Completed in 3538 milliseconds