HomeSort by relevance Sort by last modified time
    Searched defs:Backend (Results 1 - 23 of 23) sorted by null

  /art/compiler/dex/
backend.h 25 class Backend {
27 virtual ~Backend() {}
32 explicit Backend(ArenaAllocator* arena) : arena_(arena) {}
34 }; // Class Backend
  /external/chromium/net/disk_cache/
disk_cache.h 34 class Backend;
37 // Returns an instance of a Backend of the given |type|. |path| points to a
46 // any backend that performs operations on a disk. The returned pointer can be
49 // be invoked when a backend is available or a fatal error condition is reached.
50 // The pointer to receive the |backend| must remain valid until the operation
54 net::NetLog* net_log, Backend** backend,
58 class Backend {
60 // If the backend is destroyed when there are operations in progress (any
64 // for a given Entry (as opposed to the Backend) will still generate
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
version_loader.h 59 // VersionLoader calls into the Backend in the blocking thread pool to load
61 class Backend : public base::RefCountedThreadSafe<Backend> {
63 Backend() {}
74 friend class base::RefCountedThreadSafe<Backend>;
76 ~Backend() {}
78 DISALLOW_COPY_AND_ASSIGN(Backend);
84 scoped_refptr<Backend> backend_;
boot_times_loader.h 80 // BootTimesLoader calls into the Backend on the file thread to load
82 class Backend : public base::RefCountedThreadSafe<Backend> {
84 Backend() {}
87 friend class base::RefCountedThreadSafe<Backend>;
89 ~Backend() {}
91 DISALLOW_COPY_AND_ASSIGN(Backend);
135 scoped_refptr<Backend> backend_;
  /external/chromium_org/chrome/browser/value_store/
value_store_frontend.cc 16 class ValueStoreFrontend::Backend : public base::RefCountedThreadSafe<Backend> {
18 Backend() : storage_(NULL) {}
23 TRACE_EVENT0("ValueStoreFrontend::Backend", "Init");
51 base::Bind(&ValueStoreFrontend::Backend::RunCallback,
68 friend class base::RefCountedThreadSafe<Backend>;
70 virtual ~Backend() {
90 DISALLOW_COPY_AND_ASSIGN(Backend);
94 : backend_(new Backend()) {
98 : backend_(new Backend()) {
    [all...]
  /external/chromium_org/net/disk_cache/
disk_cache.h 33 class Backend;
35 // Returns an instance of a Backend of the given |type|. |path| points to a
44 // any backend that performs operations on a disk. The returned pointer can be
47 // be invoked when a backend is available or a fatal error condition is reached.
48 // The pointer to receive the |backend| must remain valid until the operation
57 scoped_ptr<Backend>* backend,
61 class NET_EXPORT Backend {
65 // If the backend is destroyed when there are operations in progress (any
69 // for a given Entry (as opposed to the Backend) will still generate
    [all...]
  /external/chromium/chrome/browser/chromeos/
version_loader.h 76 // VersionLoader calls into the Backend on the file thread to load
78 class Backend : public base::RefCountedThreadSafe<Backend> {
80 Backend() : parse_as_platform_(false) {}
95 friend class base::RefCountedThreadSafe<Backend>;
99 ~Backend() {}
101 DISALLOW_COPY_AND_ASSIGN(Backend);
112 scoped_refptr<Backend> backend_;
boot_times_loader.h 113 // BootTimesLoader calls into the Backend on the file thread to load
115 class Backend : public base::RefCountedThreadSafe<Backend> {
117 Backend() {}
122 friend class base::RefCountedThreadSafe<Backend>;
124 ~Backend() {}
126 DISALLOW_COPY_AND_ASSIGN(Backend);
162 scoped_refptr<Backend> backend_;
  /external/chromium_org/content/renderer/pepper/
ppb_image_data_impl.h 36 class Backend {
38 virtual ~Backend() {};
103 scoped_ptr<Backend> backend_;
108 class ImageDataPlatformBackend : public PPB_ImageData_Impl::Backend {
115 // PPB_ImageData_Impl::Backend implementation.
142 class ImageDataSimpleBackend : public PPB_ImageData_Impl::Backend {
147 // PPB_ImageData_Impl::Backend implementation.
  /frameworks/compile/slang/
slang_backend.cpp 64 void Backend::CreateFunctionPasses() {
76 void Backend::CreateModulePasses() {
102 bool Backend::CreateCodeGenPasses() {
204 Backend::Backend(clang::DiagnosticsEngine *DiagEngine,
230 void Backend::Initialize(clang::ASTContext &Ctx) {
239 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) {
255 bool Backend::HandleTopLevelDecl(clang::DeclGroupRef D) {
259 void Backend::HandleTranslationUnit(clang::ASTContext &Ctx) {
265 // IR). Now, interact with LLVM backend to generate actual machine code (as
    [all...]
slang_backend.h 49 class Backend : public clang::ASTConsumer {
104 Backend(clang::DiagnosticsEngine *DiagEngine,
136 virtual ~Backend();
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/
JSON.pm 53 unless ($JSON::Backend) {
56 my $backend = exists $ENV{PERL_JSON_BACKEND} ? $ENV{PERL_JSON_BACKEND} : 1;
58 if ($backend eq '1' or $backend =~ /JSON::XS\s*,\s*JSON::PP/) {
61 elsif ($backend eq '0' or $backend eq 'JSON::PP') {
64 elsif ($backend eq '2' or $backend eq 'JSON::XS') {
67 elsif ($backend eq 'JSON::backportPP') {
85 JSON::Backend::X
184 sub backend { subroutine
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/
JSON.pm 53 unless ($JSON::Backend) {
56 my $backend = exists $ENV{PERL_JSON_BACKEND} ? $ENV{PERL_JSON_BACKEND} : 1;
58 if ($backend eq '1' or $backend =~ /JSON::XS\s*,\s*JSON::PP/) {
61 elsif ($backend eq '0' or $backend eq 'JSON::PP') {
64 elsif ($backend eq '2' or $backend eq 'JSON::XS') {
67 elsif ($backend eq 'JSON::backportPP') {
85 JSON::Backend::X
184 sub backend { subroutine
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/
JSON.pm 53 unless ($JSON::Backend) {
56 my $backend = exists $ENV{PERL_JSON_BACKEND} ? $ENV{PERL_JSON_BACKEND} : 1;
58 if ($backend eq '1' or $backend =~ /JSON::XS\s*,\s*JSON::PP/) {
61 elsif ($backend eq '0' or $backend eq 'JSON::PP') {
64 elsif ($backend eq '2' or $backend eq 'JSON::XS') {
67 elsif ($backend eq 'JSON::backportPP') {
85 JSON::Backend::X
184 sub backend { subroutine
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 53 class SQLitePersistentCookieStore::Backend
54 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
56 explicit Backend(const FilePath& path)
94 friend class base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend>;
97 ~Backend() {
155 DISALLOW_COPY_AND_ASSIGN(Backend);
204 bool SQLitePersistentCookieStore::Backend::Load(
285 bool SQLitePersistentCookieStore::Backend::EnsureDatabaseVersion() {
359 void SQLitePersistentCookieStore::Backend::AddCookie(
364 void SQLitePersistentCookieStore::Backend::UpdateCookieAccessTime
    [all...]
  /external/chromium_org/chrome/browser/net/
sqlite_server_bound_cert_store.cc 33 class SQLiteServerBoundCertStore::Backend
34 : public base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend> {
36 Backend(
68 friend class base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend>;
71 ~Backend() {
138 DISALLOW_COPY_AND_ASSIGN(Backend);
168 void SQLiteServerBoundCertStore::Backend::Load(
180 base::Bind(&Backend::LoadOnDBThread, this, certs_ptr),
184 void SQLiteServerBoundCertStore::Backend::LoadOnDBThread(
208 base::Bind(&SQLiteServerBoundCertStore::Backend::DatabaseErrorCallback
    [all...]
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_service.cc 59 class ComponentCloudPolicyService::Backend
66 Backend(base::WeakPtr<ComponentCloudPolicyService> service,
72 virtual ~Backend();
80 // Passes a policy protobuf to the backend, to start its validation and
112 DISALLOW_COPY_AND_ASSIGN(Backend);
115 ComponentCloudPolicyService::Backend::Backend(
128 ComponentCloudPolicyService::Backend::~Backend() {}
130 void ComponentCloudPolicyService::Backend::SetCredentials
    [all...]
  /external/chromium_org/google_apis/gcm/engine/
rmq_store.cc 64 class RMQStore::Backend : public base::RefCountedThreadSafe<RMQStore::Backend> {
66 Backend(const base::FilePath& path,
86 friend class base::RefCountedThreadSafe<Backend>;
87 ~Backend();
100 RMQStore::Backend::Backend(
107 RMQStore::Backend::~Backend() {
110 void RMQStore::Backend::Load(const LoadCallback& callback)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_manager_base.cc 41 // Backend for the CloudExternalDataManagerBase that handles all data download,
43 class CloudExternalDataManagerBase::Backend {
49 Backend(const GetChromePolicyDetailsCallback& get_policy_details,
67 // Called when the external data references that this backend is responsible
145 DISALLOW_COPY_AND_ASSIGN(Backend);
148 CloudExternalDataManagerBase::Backend::Backend(
158 void CloudExternalDataManagerBase::Backend::SetExternalDataStore(
165 void CloudExternalDataManagerBase::Backend::Connect(
178 void CloudExternalDataManagerBase::Backend::Disconnect()
    [all...]
  /external/skia/bench/
SkBenchmark.h 52 enum Backend {
61 virtual bool isSuitableFor(Backend backend) {
62 return backend != kNonRendering_Backend;
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc 51 // delegates to Backend::Load, which posts a Backend::LoadAndNotifyOnDBThread
52 // task to the background runner. This task calls Backend::ChainLoadCookies(),
54 // in separate tasks. When this is complete, Backend::CompleteLoadOnIOThread is
59 // LoadCookiesForKey, it is delegated to Backend::LoadCookiesForKey, which posts
60 // Backend::LoadKeyAndNotifyOnDBThread to the BG runner. That routine loads just
61 // that single domain key (eTLD+1)'s cookies, and posts a Backend::
69 class SQLitePersistentCookieStore::Backend
70 : public base::RefCountedThreadSafe<SQLitePersistentCookieStore::Backend> {
72 Backend(
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 78 /// @name Assembler Backend Data
592 /// @name Assembler Backend Data
841 MCAsmBackend &Backend;
853 /// The map of sections to their associated assembler backend data.
858 /// The map of symbols to their associated assembler backend data.
995 MCAsmBackend &getBackend() const { return Backend; }
1005 /// if not specified it is automatically created from backend.
    [all...]
  /external/skia/gm/
gmmain.cpp 129 enum Backend {
153 Backend fBackend;
154 GLContextType fGLContextType; // GPU backend only
155 int fSampleCnt; // GPU backend only
    [all...]

Completed in 5691 milliseconds