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

1 2 3 4 56 7

  /external/chromium_org/net/http/
disk_cache_based_quic_server_info.cc 40 CacheOperationDataShim() : backend(NULL), entry(NULL) {}
42 disk_cache::Backend* backend; member in struct:net::DiskCacheBasedQuicServerInfo::CacheOperationDataShim
187 backend_ = data_shim_->backend;
232 return http_cache_->GetBackend(&data_shim_->backend, io_callback_);
  /external/chromium_org/net/tools/dump_cache/
cache_dumper.cc 17 CacheDumper::CacheDumper(disk_cache::Backend* cache)
upgrade_win.cc 267 scoped_ptr<disk_cache::Backend> cache_;
322 scoped_ptr<disk_cache::Backend> cache;
597 scoped_ptr<disk_cache::Backend> cache;
  /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;
benchmain.cpp 147 Benchmark::Backend backend, int sampleCount,
153 switch (backend) {
196 Benchmark::Backend backend; member in struct:Config
343 if (Benchmark::kNonRendering_Backend == config.backend) {
354 if (Benchmark::kGPU_Backend == config.backend) {
412 if (Benchmark::kGPU_Backend != config.backend) {
453 if (!bench->isSuitableFor(config.backend)) {
460 if (Benchmark::kGPU_Backend == config.backend) {
    [all...]
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;
  /external/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;
benchmain.cpp 147 Benchmark::Backend backend, int sampleCount,
153 switch (backend) {
196 Benchmark::Backend backend; member in struct:Config
343 if (Benchmark::kNonRendering_Backend == config.backend) {
354 if (Benchmark::kGPU_Backend == config.backend) {
412 if (Benchmark::kGPU_Backend != config.backend) {
453 if (!bench->isSuitableFor(config.backend)) {
460 if (Benchmark::kGPU_Backend == config.backend) {
    [all...]
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;
  /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...]
  /frameworks/compile/slang/
slang_rs_backend.cpp 59 : Backend(DiagEngine, CodeGenOpts, TargetOpts, Pragmas, OS, OT),
124 return Backend::HandleTopLevelDecl(D);
slang.cpp 257 return new Backend(mDiagEngine, CodeGenOpts, getTargetOptions(),
  /external/chromium_org/webkit/browser/appcache/
appcache_disk_cache.cc 37 scoped_ptr<disk_cache::Backend> backend_ptr_; // Accessed directly.
208 // the main disk_cache::Backend class need to be released.
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.cc 297 cache_ = simple_backend.PassAs<disk_cache::Backend>();
backend_unittest.cc 254 // Performs iteration over the backend and checks that the keys of entries
423 scoped_ptr<disk_cache::Backend> cache;
560 scoped_ptr<disk_cache::Backend> extra_cache;
684 scoped_ptr<disk_cache::Backend> backend; local
693 &backend,
697 ASSERT_FALSE(backend);
    [all...]
  /external/chromium_org/net/disk_cache/tracing/
tracing_cache_backend.cc 11 // Proxies entry objects created by the real underlying backend. Backend users
12 // will only see the proxy entries. It is necessary for recording the backend
16 EntryProxy(Entry *entry, TracingCacheBackend* backend);
61 EntryProxy::EntryProxy(Entry *entry, TracingCacheBackend* backend)
63 backend_(backend->AsWeakPtr()) {
179 TracingCacheBackend::TracingCacheBackend(scoped_ptr<Backend> backend)
180 : backend_(backend.Pass()) {
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/android/
android_backend.py 5 """Android-specific implementation of the core backend interfaces.
45 class AndroidBackend(backends.Backend):
46 """Android-specific implementation of the core |Backend| interface."""
163 def __init__(self, backend, underlying_device):
165 backend=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/chrome/browser/chromeos/
boot_times_loader.cc 239 : backend_(new Backend()),
  /external/chromium_org/third_party/skia/gm/
gmmain.cpp 132 enum Backend {
157 Backend fBackend;
158 GLContextType fGLContextType; // GPU backend only
159 int fSampleCnt; // GPU backend only
345 * Depending on the backend, this may mean that we skipped a single rendermode, or all
349 const char renderModeDescriptor [], Backend backend) {
350 if (kRaster_Backend == backend) {
    [all...]

Completed in 839 milliseconds

1 2 3 4 56 7