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

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DLocaleObjectCache.java18 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
26 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
33 CacheEntry<K, V> entry = _map.get(key);
45 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
63 CacheEntry<K, V> entry;
64 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
75 private static class CacheEntry<K, V> extends SoftReference<V> { class in class:LocaleObjectCache
78 CacheEntry(K key, V value, ReferenceQueue<V> queue) { method in class:LocaleObjectCache.CacheEntry
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/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/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.h36 class CacheEntry { class in class:unibrow::Predicate
38 inline CacheEntry() function in class:unibrow::Predicate::CacheEntry
40 inline CacheEntry(uchar code_point, bool value) function in class:unibrow::Predicate::CacheEntry
55 CacheEntry entries_[kSize];
71 struct CacheEntry { struct in class:unibrow::Mapping
72 inline CacheEntry() : code_point_(kNoChar), offset_(0) { } function in struct:unibrow::Mapping::CacheEntry
73 inline CacheEntry(uchar code_point, signed offset) function in struct:unibrow::Mapping::CacheEntry
82 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/android_icu4j/src/main/java/android/icu/impl/
H A DICUService.java396 CacheEntry result = null;
404 Map<String, CacheEntry> cache = null;
405 SoftReference<Map<String, CacheEntry>> cref = cacheref; // copy so we don't need to sync on this
414 cache = Collections.synchronizedMap(new HashMap<String, CacheEntry>());
416 cref = new SoftReference<Map<String, CacheEntry>>(cache);
465 result = new CacheEntry(currentDescriptor, service);
526 private SoftReference<Map<String, CacheEntry>> cacheref;
530 private static final class CacheEntry { class in class:ICUService
533 CacheEntry(String actualDescriptor, Object service) { method in class:ICUService.CacheEntry
/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.cpp413 HeaderSearch::FrameworkCacheEntry &CacheEntry =
417 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
436 if (!CacheEntry.Directory) {
445 CacheEntry.Directory = getFrameworkDir();
453 CacheEntry.IsUserSpecifiedSystemFramework = true;
459 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework;
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp1553 const Decl *&CacheEntry = FirstLocalDeclCache[Canon]; local
1554 if (CacheEntry)
1555 return CacheEntry;
1560 return CacheEntry = D;
/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.cpp6629 auto &CacheEntry = TransformCache[E]; local
6630 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
6631 return CacheEntry;
6658 return CacheEntry = NE;
6661 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 ...
/external/opencv3/samples/java/sbt/sbt/
H A Dsbt-launch.jarmodule.properties org/apache/ivy/Ivy$1.class Ivy.java package org.apache. ...
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/guice/extensions/persist/lib/
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 1062 milliseconds

12