HomeSort by relevance Sort by last modified time
    Searched refs:Backend (Results 101 - 125 of 126) sorted by null

1 2 3 45 6

  /external/chromium_org/third_party/skia/bench/
InterpBench.cpp 25 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
26 return backend == kNonRendering_Backend;
Matrix44Bench.cpp 20 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
21 return backend == kNonRendering_Backend;
PathBench.cpp 219 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
220 return backend == kNonRendering_Backend;
756 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
757 return backend == kNonRendering_Backend;
881 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
882 return backend == kNonRendering_Backend;
MatrixBench.cpp 21 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
22 return backend == kNonRendering_Backend;
nanobench.cpp 261 Benchmark::Backend backend; member in struct:Config
311 #define CPU_CONFIG(name, backend, color, alpha) \
313 Config config = { #name, Benchmark::backend, color, alpha, 0, kBogusGLContextType }; \
353 if (!bench->isSuitableFor(config.backend)) {
362 if (Benchmark::kRaster_Backend == config.backend) {
366 else if (Benchmark::kGPU_Backend == config.backend) {
373 if (Benchmark::kNonRendering_Backend != config.backend && !target->surface.get()) {
639 Benchmark::kGPU_Backend == targets[j]->config.backend
662 if (Benchmark::kGPU_Backend == targets[j]->config.backend) {
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
backend_impl_v3.cc 663 class BackendImplV3::IteratorImpl : public Backend::Iterator {
682 scoped_ptr<Backend::Iterator> BackendImplV3::CreateIterator() {
683 return scoped_ptr<Backend::Iterator>(new IteratorImpl(GetBackgroundQueue()));
866 Trace("Backend Cleanup");
    [all...]
backend_impl.cc 103 void FinalCleanupCallback(disk_cache::BackendImpl* backend) {
104 backend->CleanupCache();
305 Trace("Backend Cleanup");
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 1 //===- lib/MC/MCAssembler.cpp - Assembler Backend Implementation ----------===//
351 : Context(Context_), Backend(Backend_), Emitter(Emitter_), Writer(Writer_),
460 bool IsPCRel = Backend.getFixupKindInfo(
500 bool ShouldAlignPC = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
514 // Let the backend adjust the fixup value if necessary, including whether
516 Backend.processFixupValue(*this, Layout, Fixup, DF, Target, Value,
845 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
859 llvm::errs() << "assembler backend - pre-layout\n--\n";
892 llvm::errs() << "assembler backend - post-relaxation\n--\n";
899 llvm::errs() << "assembler backend - final-layout\n--\n"
    [all...]
  /external/chromium_org/content/browser/gpu/
shader_disk_cache.cc 26 void FreeDiskCacheIterator(scoped_ptr<disk_cache::Backend::Iterator> iterator) {
101 scoped_ptr<disk_cache::Backend::Iterator> iter_;
164 int rv = cache_->backend()->OpenEntry(
202 cache_->backend()->OnExternalCacheHit(key_);
209 return cache_->backend()->CreateEntry(
297 iter_ = cache_->backend()->CreateIterator();
  /external/chromium_org/net/http/
disk_based_cert_cache_unittest.cc 38 // MockTransactions are required to use the MockDiskCache backend.
122 // Stores the certificate corresponding to |cert_data| in |backend|. If
125 void ImportCert(disk_cache::Backend* backend,
131 backend->CreateEntry(cert_data.cache_key, &entry, callback.callback());
156 // correctly cached entry in |backend|.
157 void CheckCertCached(disk_cache::Backend* backend,
161 int rv = backend->OpenEntry(cert_data.cache_key, &entry, callback.callback());
193 MockDiskCache backend; local
210 MockDiskCache backend; local
230 MockDiskCache backend; local
248 MockDiskCache backend; local
267 MockDiskCache backend; local
283 MockDiskCache backend; local
298 MockDiskCache backend; local
327 MockDiskCache backend; local
349 MockDiskCache backend; local
372 MockDiskCache backend; local
415 MockDiskCache backend; local
441 MockDiskCache backend; local
467 MockDiskCache backend; local
486 MockDiskCache backend; local
508 MockDiskCache backend; local
    [all...]
http_cache_unittest.cc 552 disk_cache::Backend* backend; local
554 // This will lazily initialize the backend.
555 int rv = cache.http_cache()->GetBackend(&backend, cb.callback());
613 // This will initialize a cache object with NULL backend.
1918 scoped_ptr<disk_cache::Backend>* backend = factory->backend(); local
1934 disk_cache::Backend* backend; local
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_disk_cache.cc 38 scoped_ptr<disk_cache::Backend> backend_ptr_; // Accessed directly.
215 // the main disk_cache::Backend class need to be released.
  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.cc 238 : backend_(new Backend()),
  /external/chromium_org/chrome/browser/safe_browsing/
malware_details_unittest.cc 96 void WriteToEntry(disk_cache::Backend* cache, const std::string& key,
114 disk_cache::Backend* cache;
311 // to history backend.
  /external/llvm/include/llvm/MC/
MCAssembler.h 74 /// @name Assembler Backend Data
602 /// @name Assembler Backend Data
866 MCAsmBackend &Backend;
878 /// The map of sections to their associated assembler backend data.
883 /// The map of symbols to their associated assembler backend data.
1037 MCAsmBackend &getBackend() const { return Backend; }
1045 /// if not specified it is automatically created from backend.
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
android_backend.py 5 """Android-specific implementation of the core backend interfaces.
50 class AndroidBackend(backends.Backend):
51 """Android-specific implementation of the core |Backend| interface."""
177 def __init__(self, backend, adb):
179 backend=backend,
  /external/chromium_org/net/disk_cache/
backend_unittest.cc 253 // Performs iteration over the backend and checks that the keys of entries
424 scoped_ptr<disk_cache::Backend> cache;
560 scoped_ptr<disk_cache::Backend> extra_cache;
689 scoped_ptr<disk_cache::Backend> backend; local
697 &backend,
701 ASSERT_FALSE(backend);
    [all...]
entry_unittest.cc     [all...]
  /external/chromium_org/third_party/skia/gm/
gmmain.cpp 134 enum Backend {
158 Backend fBackend;
159 GLContextType fGLContextType; // GPU backend only
160 int fSampleCnt; // GPU backend only
346 * Depending on the backend, this may mean that we skipped a single rendermode, or all
350 const char renderModeDescriptor [], Backend backend) {
351 if (kRaster_Backend == backend) {
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/net_internals/
net_internals_ui.cc 165 // Returns the disk cache backend for |context| if there is one, or NULL.
166 disk_cache::Backend* GetDiskCacheBackend(net::URLRequestContext* context) {
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.cc 122 // backend type and version. If the directory contains no cache, occupies it
210 SimpleBackendImpl* backend) {
212 proxy(new ActiveEntryProxy(entry_hash, backend));
218 SimpleBackendImpl* backend)
220 backend_(backend->AsWeakPtr()) {}
472 explicit SimpleIterator(base::WeakPtr<SimpleBackendImpl> backend)
473 : backend_(backend),
477 // From Backend::Iterator:
540 scoped_ptr<Backend::Iterator> SimpleBackendImpl::CreateIterator() {
572 LOG(ERROR) << "Simple Cache Backend: wrong file structure on disk:
    [all...]
  /external/elfutils/0.153/
elfutils.spec 224 - libebl: i386 backend fix for multi-register integer return value
292 - libebl: sparc backend fixes; some more arm backend support
315 - libebl: backend fixes for i386 TLS relocs; backend support for
334 - elflint: backend improvements for sparc, alpha
356 - libebl: powerpc backend support for Altivec registers
372 - libebl: backend improvements for sparc, alpha, powerpc
392 - libebl: sparc backend support for return value location
393 - libebl, libdwfl: backend register name support extended with more inf
    [all...]
  /art/compiler/dex/quick/
codegen_util.cc     [all...]
mir_to_lir.h 26 #include "dex/backend.h"
227 class Mir2Lir : public Backend {
643 * @brief Provides the maximum number of compiler temporaries that the backend can/wants
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/new/js/
app.js 6 * will serve as the starting point for a new backend.
7 * It works with the current backend, but does not support rebaselining.
55 // Columns either provided by the backend response or added in code.
62 // TODO (stephana@): needs to be driven by backend data.
113 // backend to reflect the current "known" image sets to compare.
163 * retrieve data from the backend.
196 /** Load the data from the backend **/
429 // data structs to interface with markup and backend
699 // TODO: remove. The backend should provide absoute URLs
1057 * Encapsulates all interactions with the backend by handling
    [all...]

Completed in 586 milliseconds

1 2 3 45 6