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 65 // VersionLoader calls into the Backend in the blocking thread pool to load
67 class Backend : public base::RefCountedThreadSafe<Backend> {
69 Backend() {}
81 friend class base::RefCountedThreadSafe<Backend>;
83 ~Backend() {}
85 DISALLOW_COPY_AND_ASSIGN(Backend);
96 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_;
swap_metrics.cc 44 class SwapMetrics::Backend : public base::RefCountedThreadSafe<Backend> {
46 explicit Backend(const std::string& reason);
56 friend class base::RefCountedThreadSafe<Backend>;
58 virtual ~Backend();
111 DISALLOW_COPY_AND_ASSIGN(Backend);
115 bool SwapMetrics::Backend::first_time_ = true;
117 int64 SwapMetrics::Backend::swap_total_kb_ = 0;
119 int SwapMetrics::Backend::number_of_cpus_ = 0;
121 SwapMetrics::Backend::Backend(const std::string& reason
    [all...]
  /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() {};
98 scoped_ptr<Backend> backend_;
103 class ImageDataPlatformBackend : public PPB_ImageData_Impl::Backend {
108 // PPB_ImageData_Impl::Backend implementation.
133 class ImageDataSimpleBackend : public PPB_ImageData_Impl::Backend {
138 // 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 36 class SQLiteServerBoundCertStore::Backend
37 : public base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend> {
39 Backend(const base::FilePath& path,
69 friend class base::RefCountedThreadSafe<SQLiteServerBoundCertStore::Backend>;
72 ~Backend() {
137 DISALLOW_COPY_AND_ASSIGN(Backend);
167 void SQLiteServerBoundCertStore::Backend::Load(
174 base::Bind(&Backend::LoadOnDBThreadAndNotify, this, loaded_callback));
177 void SQLiteServerBoundCertStore::Backend::LoadOnDBThreadAndNotify(
191 void SQLiteServerBoundCertStore::Backend::LoadOnDBThread
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_service.cc 47 class ComponentCloudPolicyService::Backend
50 Backend(base::WeakPtr<ComponentCloudPolicyService> service,
53 virtual ~Backend();
55 // This is invoked right after the constructor but on the backend background
62 // Creates the backend updater.
72 // Passes a policy protobuf to the backend, to start its validation and
74 // This is ignored if the backend isn't connected.
98 DISALLOW_COPY_AND_ASSIGN(Backend);
101 ComponentCloudPolicyService::Backend::Backend(
    [all...]
cloud_external_data_manager_base.cc 42 // Backend for the CloudExternalDataManagerBase that handles all data download,
44 class CloudExternalDataManagerBase::Backend {
49 Backend(const PolicyDefinitionList* policy_definitions,
66 // Called when the external data references that this backend is responsible
143 DISALLOW_COPY_AND_ASSIGN(Backend);
146 CloudExternalDataManagerBase::Backend::Backend(
154 void CloudExternalDataManagerBase::Backend::SetExternalDataStore(
161 void CloudExternalDataManagerBase::Backend::Connect(
173 void CloudExternalDataManagerBase::Backend::Disconnect()
    [all...]
  /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/skia/bench/
benchmain.cpp 189 enum Backend {
197 Backend backend, int sampleCount, GrContext* context) {
202 switch (backend) {
244 Backend fBackend;
383 Backend backend = kRaster_Backend; // for warning local
764 backend = gConfigs[configIndex].fBackend;
771 if (kGPU_Backend == backend) {
784 if (kNonRendering_Backend != 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 131 enum Backend {
155 Backend fBackend;
156 GLContextType fGLContextType; // GPU backend only
157 int fSampleCnt; // GPU backend only
    [all...]

Completed in 900 milliseconds