HomeSort by relevance Sort by last modified time
    Searched refs:Backend (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/chromium_org/net/tools/disk_cache_memory_test/
disk_cache_memory_test.cc 89 scoped_ptr<Backend> CreateAndInitBackend(const CacheSpec& spec) {
90 scoped_ptr<Backend> result;
91 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);
228 ScopedVector<Backend> backends
231 scoped_ptr<Backend> backend = CreateAndInitBackend(**it); local
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover.h 40 class Backend;
409 disk_cache::Backend* cache_;
  /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_org/third_party/skia/bench/
MemoryBench.cpp 24 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
25 return backend == kNonRendering_Backend;
93 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
94 return backend == kNonRendering_Backend;
ColorPrivBench.cpp 15 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
16 return backend == kNonRendering_Backend;
SkipZeroesBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
MemsetBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
RectanizerBench.cpp 67 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
68 return kNonRendering_Backend == backend;
GrResourceCacheBench.cpp 174 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
175 return backend == kGPU_Backend;
210 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
211 return backend == kGPU_Backend;
QuadTreeBench.cpp 35 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
36 return backend == kNonRendering_Backend;
83 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
84 return backend == kNonRendering_Backend;
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
backends.py 5 _backends = {} # Maps a string (backend name) to a |Backend| instance.
8 def Register(backend):
9 """Called by each backend module to register upon initialization."""
10 assert(isinstance(backend, Backend))
11 _backends[backend.name] = backend
21 for backend in _backends.itervalues():
22 for device in backend.EnumerateDevices()
    [all...]
  /external/skia/bench/
MemoryBench.cpp 24 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
25 return backend == kNonRendering_Backend;
93 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
94 return backend == kNonRendering_Backend;
ColorPrivBench.cpp 15 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
16 return backend == kNonRendering_Backend;
SkipZeroesBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
MemsetBench.cpp 39 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
40 return backend == kNonRendering_Backend;
RectanizerBench.cpp 67 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
68 return kNonRendering_Backend == backend;
  /art/compiler/
compilers.h 55 Backend* GetCodeGenerator(CompilationUnit* cu, void* compilation_unit) const OVERRIDE;
61 * backend.
63 * @returns nullptr if not supported by backend or a vector of bytes for CFI DWARF
  /external/chromium_org/net/url_request/
view_cache_helper_unittest.cc 25 // Gets a pointer to the cache backend.
26 disk_cache::Backend* GetBackend();
71 void WriteToEntry(disk_cache::Backend* cache, const std::string& key,
92 disk_cache::Backend* cache;
188 disk_cache::Backend* cache;
  /external/chromium_org/net/disk_cache/blockfile/
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;
  /external/chromium_org/net/disk_cache/memory/
mem_backend_impl.cc 44 scoped_ptr<Backend> MemBackendImpl::CreateBackend(int max_bytes,
49 return cache.PassAs<Backend>();
52 return scoped_ptr<Backend>();
  /packages/apps/Settings/src/com/android/settings/notification/
AppNotificationSettings.java 44 import com.android.settings.notification.NotificationAppList.Backend;
58 private final Backend mBackend = new 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...]
  /art/compiler/dex/portable/
mir_to_gbc.h 30 #include "dex/backend.h"
46 Backend* PortableCodeGenerator(CompilationUnit* const cu, MIRGraph* const mir_graph,
50 class MirConverter : public Backend {
55 : Backend(arena),
  /external/chromium_org/chrome/browser/
chrome_net_benchmarking_message_filter.cc 70 disk_cache::Backend* backend = request_context_->GetURLRequestContext()-> local
72 if (backend) {
75 rv = backend->DoomAllEntries(callback);
  /external/chromium_org/net/http/
http_cache.cc 78 NetLog* net_log, scoped_ptr<disk_cache::Backend>* backend,
88 backend,
111 // open cache entries or the backend itself.
117 scoped_ptr<disk_cache::Backend> backend; member in struct:net::HttpCache::PendingOp
133 // A work item encapsulates a single request to the backend with all the
143 const net::CompletionCallback& cb, disk_cache::Backend** backend)
148 backend_(backend) {}
    [all...]

Completed in 628 milliseconds

1 2 34 5 6 7