/external/icu/icu4c/source/common/ |
unifiedcache.cpp | 7 * File UNIFIEDCACHE.CPP 12 #include "unifiedcache.h" 18 static icu::UnifiedCache *gCache = NULL; 77 gCache = new UnifiedCache(status); 93 UnifiedCache *UnifiedCache::getInstance(UErrorCode &status) { 102 UnifiedCache::UnifiedCache(UErrorCode &status) : 124 void UnifiedCache::setEvictionPolicy( 138 int32_t UnifiedCache::unusedCount() const [all...] |
unifiedcache.h | 7 * File UNIFIEDCACHE.H - The ICU Unified cache. 28 class UnifiedCache; 90 friend class UnifiedCache; 181 class U_COMMON_API UnifiedCache : public UnifiedCacheBase { 185 * Do not call directly. Instead use UnifiedCache::getInstance() as 186 * there should be only one UnifiedCache in an application. 188 UnifiedCache(UErrorCode &status); 193 static UnifiedCache *getInstance(UErrorCode &status); 268 const UnifiedCache *cache = getInstance(status); 345 virtual ~UnifiedCache(); [all...] |
/external/icu/icu4c/source/i18n/ |
ucol_imp.h | 64 class UnifiedCache; 118 const UnifiedCache *cache;
|
datefmt.cpp | 31 #include "unifiedcache.h" 432 UnifiedCache *cache = UnifiedCache::getInstance(status);
|
ucol_res.cpp | 49 #include "unifiedcache.h" 165 : cache(UnifiedCache::getInstance(errorCode)), rootEntry(re),
|
measfmt.cpp | 40 #include "unifiedcache.h" 807 UnifiedCache::getByLocale(locale, cache, status); [all...] |
numfmt.cpp | 55 #include "unifiedcache.h" [all...] |
reldatefmt.cpp | 33 #include "unifiedcache.h" 856 UnifiedCache::getByLocale(fLocale, fCache, status);
|
calendar.cpp | 61 #include "unifiedcache.h" 963 UnifiedCache::getByLocale(aLocale, shared, success); 1002 UnifiedCache::getByLocale(aLocale, shared, success); [all...] |
plurrule.cpp | 33 #include "unifiedcache.h" 179 UnifiedCache::getByLocale(locale, result, status); [all...] |
dtfmtsym.cpp | 43 #include "unifiedcache.h" 245 UnifiedCache::getByLocale(locale, shared, status); [all...] |
/external/icu/icu4c/source/test/intltest/ |
unifiedcachetest.cpp | 13 #include "unifiedcache.h" 35 const UnifiedCache *cacheContext = (const UnifiedCache *) context; 43 UnifiedCache::getByLocale(fLoc.getLanguage(), item, status); 96 const UnifiedCache *cache = UnifiedCache::getInstance(status); 112 // We have to call this first or else calling the UnifiedCache 115 UnifiedCache::getInstance(status); 117 // We create our own local UnifiedCache instance to ensure we have 120 UnifiedCache cache(status) [all...] |
tsmthred.cpp | 26 #include "unifiedcache.h" [all...] |