Searched refs:CacheEntry (Results 1 - 13 of 13) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLocaleObjectCache.java14 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
22 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
29 CacheEntry<K, V> entry = _map.get(key);
41 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
59 CacheEntry<K, V> entry;
60 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
71 private static class CacheEntry<K, V> extends SoftReference<V> { class in class:LocaleObjectCache
74 CacheEntry(K key, V value, ReferenceQueue<V> queue) { method in class:LocaleObjectCache.CacheEntry
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h172 Entry *CacheEntry; member in class:llvm::InterferenceCache::Cursor
179 // we don't have to check for E == CacheEntry etc.
180 if (CacheEntry)
181 CacheEntry->addRef(-1);
182 CacheEntry = E;
183 if (CacheEntry)
184 CacheEntry->addRef(+1);
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {}
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) {
193 setEntry(O.CacheEntry);
[all...]
/external/v8/src/
H A Dunicode.h34 struct CacheEntry { struct in class:unibrow::Predicate
35 inline CacheEntry() : code_point_(0), value_(0) { } function in struct:unibrow::Predicate::CacheEntry
36 inline CacheEntry(uchar code_point, bool value) function in struct:unibrow::Predicate::CacheEntry
44 CacheEntry entries_[kSize];
59 struct CacheEntry { struct in class:unibrow::Mapping
60 inline CacheEntry() : code_point_(kNoChar), offset_(0) { } function in struct:unibrow::Mapping::CacheEntry
61 inline CacheEntry(uchar code_point, signed offset) function in struct:unibrow::Mapping::CacheEntry
70 CacheEntry entries_[kSize];
H A Dunicode-inl.h15 CacheEntry entry = entries_[code_point & kMask];
23 entries_[code_point & kMask] = CacheEntry(code_point, result);
29 CacheEntry entry = entries_[c & kMask];
48 entries_[c & kMask] = CacheEntry(c, result[0] - c);
51 entries_[c & kMask] = CacheEntry(c, 0);
/external/emma/core/java12/com/vladium/emma/report/
H A DSourcePathCache.java88 CacheEntry entry = (CacheEntry) m_packageCache.get (packageVMName);
92 entry = new CacheEntry (m_sourcepath.length);
125 private static final class CacheEntry class in class:SourcePathCache
127 CacheEntry (final int size) method in class:SourcePathCache.CacheEntry
218 private final Map /* packageVMName:String->CacheEntry */ m_packageCache; // never null
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUService.java394 CacheEntry result = null;
402 Map<String, CacheEntry> cache = null;
403 SoftReference<Map<String, CacheEntry>> cref = cacheref; // copy so we don't need to sync on this
412 cache = Collections.synchronizedMap(new HashMap<String, CacheEntry>());
414 cref = new SoftReference<Map<String, CacheEntry>>(cache);
463 result = new CacheEntry(currentDescriptor, service);
524 private SoftReference<Map<String, CacheEntry>> cacheref;
528 private static final class CacheEntry { class in class:ICUService
531 CacheEntry(String actualDescriptor, Object service) { method in class:ICUService.CacheEntry
/external/icu/icu4c/source/common/
H A Dserv.cpp203 class CacheEntry : public UMemory { class in inherits:UMemory
214 ~CacheEntry() {
218 CacheEntry(const UnicodeString& _actualDescriptor, UObject* _service) function in class:CacheEntry
228 CacheEntry* ref() {
240 CacheEntry* unref() {
261 U_NAMESPACE_USE ((CacheEntry*)obj)->unref();
439 CacheEntry* result = NULL;
490 result = (CacheEntry*)serviceCache->get(currentDescriptor);
509 result = new CacheEntry(currentDescriptor, service);
/external/clang/lib/Lex/
H A DHeaderSearch.cpp414 HeaderSearch::FrameworkCacheEntry &CacheEntry =
418 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
437 if (!CacheEntry.Directory) {
446 CacheEntry.Directory = getFrameworkDir();
454 CacheEntry.IsUserSpecifiedSystemFramework = true;
460 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp6278 auto &CacheEntry = TransformCache[E]; local
6279 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
6280 return CacheEntry;
6305 return CacheEntry = NE;
6308 return CacheEntry = ExprError();
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1416 milliseconds