HomeSort by relevance Sort by last modified time
    Searched defs:CacheImpl (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_cache.h 54 typedef std::tr1::unordered_map<string, const RegExp*> CacheImpl;
56 typedef std::map<string, const RegExp*> CacheImpl;
69 scoped_ptr<CacheImpl> cache_impl_; // protected by lock_
  /external/chromium_org/chrome/common/
instant_restricted_id_cache.h 75 typedef base::MRUCache<InstantRestrictedID, T> CacheImpl;
77 mutable CacheImpl cache_;
78 typename CacheImpl::reverse_iterator last_add_start_;
146 for (typename CacheImpl::reverse_iterator it = last_add_start_;
158 typename CacheImpl::const_iterator cache_it = cache_.Peek(restricted_id);
  /external/skia/src/core/
SkImageFilter.cpp 380 class CacheImpl : public SkImageFilter::Cache {
382 explicit CacheImpl(int minChildren) : fMinChildren(minChildren) {}
383 virtual ~CacheImpl();
406 bool CacheImpl::get(const SkImageFilter* key, SkBitmap* result, SkIPoint* offset) {
416 void CacheImpl::remove(const SkImageFilter* key) {
424 void CacheImpl::set(const SkImageFilter* key, const SkBitmap& result, const SkIPoint& offset) {
431 return new CacheImpl(minChildren);
434 CacheImpl::~CacheImpl() {
  /external/chromium_org/third_party/skia/src/core/
SkImageFilter.cpp 416 class CacheImpl : public SkImageFilter::Cache {
418 CacheImpl(size_t maxBytes) : fMaxBytes(maxBytes), fCurrentBytes(0) {
420 virtual ~CacheImpl() {
496 return SkNEW_ARGS(CacheImpl, (maxBytes));
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 276 VLOG(2) << "CacheImpl: Enter GC: object = " << Type() << "(" << this
305 VLOG(2) << "CacheImpl: Exit GC: object = " << Type() << "(" << this
371 class CacheImpl : public CacheBaseImpl< CacheState<A> > {
375 CacheImpl() {}
377 explicit CacheImpl(const CacheOptions &opts)
381 DISALLOW_EVIL_CONSTRUCTORS(CacheImpl);
  /external/openfst/src/include/fst/
cache.h 563 VLOG(2) << "CacheImpl: Enter GC: object = " << Type() << "(" << this
593 FSTERROR() << "CacheImpl:GC: Unable to free all cached states";
595 VLOG(2) << "CacheImpl: Exit GC: object = " << Type() << "(" << this
634 class CacheImpl : public CacheBaseImpl< CacheState<A> > {
638 CacheImpl() {}
640 explicit CacheImpl(const CacheOptions &opts)
643 CacheImpl(const CacheImpl<A> &impl, bool preserve_cache = false)
647 void operator=(const CacheImpl<State> &impl); // disallow

Completed in 8949 milliseconds