/external/chromium_org/third_party/icu/source/i18n/ |
D | astro.h | 737 class CalendarCache : public UMemory { 739 static int32_t get(CalendarCache** cache, int32_t key, UErrorCode &status); 740 static void put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status); 741 virtual ~CalendarCache(); 743 CalendarCache(int32_t size, UErrorCode& status); 744 static void createCache(CalendarCache** cache, UErrorCode& status); 748 CalendarCache();
|
D | astro.cpp | 1520 void CalendarCache::createCache(CalendarCache** cache, UErrorCode& status) { in createCache() 1525 *cache = new CalendarCache(32, status); in createCache() 1533 int32_t CalendarCache::get(CalendarCache** cache, int32_t key, UErrorCode &status) { in get() 1556 void CalendarCache::put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) { in put() 1576 CalendarCache::CalendarCache(int32_t size, UErrorCode &status) { in CalendarCache() function in CalendarCache 1581 CalendarCache::~CalendarCache() { in ~CalendarCache()
|
D | chnsecal.cpp | 53 static U_NAMESPACE_QUALIFIER CalendarCache *gChineseCalendarWinterSolsticeCache = NULL; 54 static U_NAMESPACE_QUALIFIER CalendarCache *gChineseCalendarNewYearCache = NULL; 468 int32_t cacheValue = CalendarCache::get(&gChineseCalendarWinterSolsticeCache, gyear, status); in winterSolstice() 488 CalendarCache::put(&gChineseCalendarWinterSolsticeCache, gyear, cacheValue, status); in winterSolstice() 696 int32_t cacheValue = CalendarCache::get(&gChineseCalendarNewYearCache, gyear, status); in newYear() 713 CalendarCache::put(&gChineseCalendarNewYearCache, gyear, cacheValue, status); in newYear()
|
D | islamcal.cpp | 55 static U_NAMESPACE_QUALIFIER CalendarCache *gMonthCache = NULL; 230 int32_t start = CalendarCache::get(&gMonthCache, month, status); in trueMonthStart() 264 CalendarCache::put(&gMonthCache, month, start, status); in trueMonthStart()
|
D | hebrwcal.cpp | 134 static U_NAMESPACE_QUALIFIER CalendarCache *gCache = NULL; 390 int32_t day = CalendarCache::get(&gCache, year, status); in startOfYear() 418 CalendarCache::put(&gCache, year, day, status); in startOfYear()
|
/external/icu/icu4c/source/i18n/ |
D | astro.h | 737 class CalendarCache : public UMemory { 739 static int32_t get(CalendarCache** cache, int32_t key, UErrorCode &status); 740 static void put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status); 741 virtual ~CalendarCache(); 743 CalendarCache(int32_t size, UErrorCode& status); 744 static void createCache(CalendarCache** cache, UErrorCode& status); 748 CalendarCache();
|
D | astro.cpp | 1531 void CalendarCache::createCache(CalendarCache** cache, UErrorCode& status) { in createCache() 1536 *cache = new CalendarCache(32, status); in createCache() 1544 int32_t CalendarCache::get(CalendarCache** cache, int32_t key, UErrorCode &status) { in get() 1567 void CalendarCache::put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) { in put() 1587 CalendarCache::CalendarCache(int32_t size, UErrorCode &status) { in CalendarCache() function in CalendarCache 1592 CalendarCache::~CalendarCache() { in ~CalendarCache()
|
D | chnsecal.cpp | 54 static icu::CalendarCache *gChineseCalendarWinterSolsticeCache = NULL; 55 static icu::CalendarCache *gChineseCalendarNewYearCache = NULL; 524 int32_t cacheValue = CalendarCache::get(&gChineseCalendarWinterSolsticeCache, gyear, status); in winterSolstice() 544 CalendarCache::put(&gChineseCalendarWinterSolsticeCache, gyear, cacheValue, status); in winterSolstice() 756 int32_t cacheValue = CalendarCache::get(&gChineseCalendarNewYearCache, gyear, status); in newYear() 773 CalendarCache::put(&gChineseCalendarNewYearCache, gyear, cacheValue, status); in newYear()
|
D | hebrwcal.cpp | 134 static icu::CalendarCache *gCache = NULL; 390 int32_t day = CalendarCache::get(&gCache, year, status); in startOfYear() 418 CalendarCache::put(&gCache, year, day, status); in startOfYear()
|
D | islamcal.cpp | 56 static icu::CalendarCache *gMonthCache = NULL; 349 int32_t start = CalendarCache::get(&gMonthCache, month, status); in trueMonthStart() 383 CalendarCache::put(&gMonthCache, month, start, status); in trueMonthStart()
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
D | urename.h | 1783 #define CalendarCache U_ICU_ENTRY_POINT_RENAME(CalendarCache) macro
|