Searched defs:CacheState (Results 1 - 7 of 7) sorted by relevance

/external/chromium/chrome/browser/safe_browsing/
H A Dclient_side_detection_service.h130 // CacheState holds all information necessary to respond to a caller without
132 struct CacheState { struct in class:safe_browsing::ClientSideDetectionService
136 CacheState(bool phish, base::Time time);
138 typedef std::map<GURL, linked_ptr<CacheState> > PhishingCache;
H A Dclient_side_detection_service.cc54 ClientSideDetectionService::CacheState::CacheState(bool phish, base::Time time) function in class:safe_browsing::ClientSideDetectionService::CacheState
348 make_linked_ptr(new CacheState(response.phishy(), base::Time::Now()));
376 const CacheState& cache_state = *it->second;
398 const CacheState& cache_state = *it->second;
/external/chromium/chrome/browser/
H A Dbrowsing_data_remover.h94 enum CacheState { enum in class:BrowsingDataRemover
202 CacheState next_cache_state_;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpclient.h181 enum CacheState { CS_READY, CS_WRITING, CS_READING, CS_VALIDATING }; enum in class:talk_base::HttpClient
196 CacheState cache_state_;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h46 // CacheState below). This class is used to cache FST elements with
348 struct CacheState { struct in namespace:fst
353 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {} function in struct:fst::CacheState
369 // A CacheBaseImpl with a commonly used CacheState.
371 class CacheImpl : public CacheBaseImpl< CacheState<A> > {
373 typedef CacheState<A> State;
378 : CacheBaseImpl< CacheState<A> >(opts) {}
/external/openfst/src/include/fst/
H A Daccumulator.h353 for(typename unordered_map<StateId, CacheState>::iterator it = cache_.begin();
362 typename unordered_map<StateId, CacheState>::iterator it = cache_.find(s);
374 cache_.insert(make_pair(s, CacheState(weights, true)));
385 struct CacheState { struct in class:fst::CacheLogAccumulatorData
389 CacheState(vector<double> *w, bool r) : weights(w), recent(r) {} function in struct:fst::CacheLogAccumulatorData::CacheState
398 typename unordered_map<StateId, CacheState>::iterator it = cache_.begin();
400 CacheState &cs = it->second;
414 unordered_map<StateId, CacheState> cache_; // Cache
H A Dcache.h89 // CacheState below). This class is used to cache FST elements with
487 struct CacheState { struct in namespace:fst
492 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {} function in struct:fst::CacheState
508 DISALLOW_COPY_AND_ASSIGN(CacheState);
511 // A CacheBaseImpl with a commonly used CacheState.
513 class CacheImpl : public CacheBaseImpl< CacheState<A> > {
515 typedef CacheState<A> State;
520 : CacheBaseImpl< CacheState<A> >(opts) {}
589 class C = DefaultCacheStateAllocator<CacheState<typename F::Arc> > >
632 class C = DefaultCacheStateAllocator<CacheState<typenam
[all...]

Completed in 635 milliseconds