HomeSort by relevance Sort by last modified time
    Searched refs:Backend (Results 51 - 75 of 107) sorted by null

1 23 4 5

  /art/compiler/dex/
compiler_ir.h 23 #include "backend.h"
111 UniquePtr<Backend> cg; // Target-specific codegen.
  /external/chromium/net/url_request/
view_cache_helper_unittest.cc 23 // Gets a pointer to the cache backend.
24 disk_cache::Backend* GetBackend();
68 void WriteToEntry(disk_cache::Backend* cache, const std::string key,
89 disk_cache::Backend* cache;
184 disk_cache::Backend* cache;
  /frameworks/compile/slang/
slang_rs_backend.h 43 class RSBackend : public Backend {
  /external/chromium_org/chrome/browser/ui/webui/options/
edit_dictionary_browsertest.js 102 // Backend notifies UI that the word 'foo' has been added. UI ignores this
108 // Backend notifies UI that the words 'bar' and 'baz' were added. UI shows
119 // The backend keeps only one copy of the word.
127 // Backend notifies UI that the word 'baz' has been removed. UI ignores this
132 // Backend notifies UI that words 'foo' and 'bar' have been removed. UI
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 124 void FlushQueue(disk_cache::Backend* cache) {
135 disk_cache::Backend* cache;
175 disk_cache::Backend* cache;
218 disk_cache::Backend* cache;
  /external/chromium_org/net/url_request/
view_cache_helper_unittest.cc 24 // Gets a pointer to the cache backend.
25 disk_cache::Backend* GetBackend();
69 void WriteToEntry(disk_cache::Backend* cache, const std::string key,
90 disk_cache::Backend* cache;
186 disk_cache::Backend* cache;
  /external/chromium/net/disk_cache/
disk_cache_perftest.cc 44 int TimeWrite(int num_entries, disk_cache::Backend* cache,
95 int TimeRead(int num_entries, disk_cache::Backend* cache,
169 disk_cache::Backend* cache;
backend_impl.h 40 // This class implements the Backend interface. An object of this
42 class BackendImpl : public Backend {
52 // Returns a new backend with the desired flags. See the declaration of
57 net::NetLog* net_log, Backend** backend,
92 // Sets the cache type for this backend.
249 // Backend interface.
stress_cache.cc 103 disk_cache::Backend* cache;
  /external/chromium_org/net/disk_cache/
disk_cache_perftest.cc 42 bool TimeWrite(int num_entries, disk_cache::Backend* cache,
94 bool TimeRead(int num_entries, disk_cache::Backend* cache,
168 scoped_ptr<disk_cache::Backend> cache;
mem_backend_impl.cc 44 scoped_ptr<Backend> MemBackendImpl::CreateBackend(int max_bytes,
49 return cache.PassAs<Backend>();
52 return scoped_ptr<Backend>();
  /external/chromium_org/net/tools/crash_cache/
crash_cache.cc 130 void FlushQueue(disk_cache::Backend* cache) {
140 disk_cache::Backend** cache,
143 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;
157 disk_cache::Backend* cache;
194 disk_cache::Backend* cache
    [all...]
  /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...]
  /art/compiler/dex/portable/
mir_to_gbc.h 24 #include "dex/backend.h"
39 Backend* PortableCodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph,
43 class MirConverter : public Backend {
48 : Backend(arena),
  /external/chromium/chrome/browser/chromeos/
boot_times_loader.cc 69 : backend_(new Backend()),
103 NewRunnableMethod(backend_.get(), &Backend::GetBootTimes, request));
172 void BootTimesLoader::Backend::GetBootTimes(
192 NewRunnableMethod(this, &Backend::GetBootTimes, request),
  /external/chromium_org/chrome/browser/
chrome_net_benchmarking_message_filter.cc 74 disk_cache::Backend* backend = request_context_->GetURLRequestContext()-> local
76 if (backend) {
79 rv = backend->DoomAllEntries(callback);
  /external/chromium/net/http/
http_cache.cc 87 disk_cache::Backend** backend,
91 thread_, net_log, backend, callback);
113 // open cache entries or the backend itself.
115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {}
119 disk_cache::Backend* backend; member in struct:net::HttpCache::PendingOp
135 // A work item encapsulates a single request to the backend with all the
143 CompletionCallback* cb, disk_cache::Backend** backend)
1116 disk_cache::Backend* backend = pending_op->backend; local
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover.h 33 class Backend;
405 disk_cache::Backend* cache_;
  /external/chromium_org/net/http/
http_cache.cc 76 NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend,
86 backend,
109 // open cache entries or the backend itself.
115 scoped_ptr<disk_cache::Backend> backend; member in struct:net::HttpCache::PendingOp
131 // A work item encapsulates a single request to the backend with all the
141 const net::CompletionCallback& cb, disk_cache::Backend** backend)
146 backend_(backend) {}
    [all...]
mock_http_cache.cc 491 scoped_ptr<disk_cache::Backend>* backend,
493 backend->reset(new MockDiskCache());
509 disk_cache::Backend* backend; local
510 int rv = http_cache_.GetBackend(&backend, cb.callback());
512 return (rv == net::OK) ? static_cast<MockDiskCache*>(backend) : NULL;
587 net::NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend,
589 backend->reset(new MockDiskCacheNoCB())
    [all...]
  /external/eigen/bench/
sparse_cholesky.cpp 63 template<int Backend>
69 SparseLLT<EigenSparseSelfAdjointMatrix,Backend> chol(sm1, flags);
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.h 31 // SimpleBackendImpl is a new cache backend that stores entries in individual
33 // See http://www.chromium.org/developers/design-documents/network-stack/disk-cache/very-simple-backend
41 class NET_EXPORT_PRIVATE SimpleBackendImpl : public Backend,
60 // Returns the maximum file size permitted in this backend.
67 // Backend:
  /external/chromium_org/net/disk_cache/v3/
backend_impl_v3.h 40 // This class implements the Backend interface. An object of this
42 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
62 // Sets the cache type for this backend.
176 // Backend implementation.

Completed in 2870 milliseconds

1 23 4 5