HomeSort by relevance Sort by last modified time
    Searched defs:CacheKeyBase (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/common/
unifiedcache.h 33 class U_COMMON_API CacheKeyBase : public UObject {
35 CacheKeyBase() : fCreationStatus(U_ZERO_ERROR), fIsMaster(FALSE) {}
40 CacheKeyBase(const CacheKeyBase &other)
42 virtual ~CacheKeyBase();
52 virtual CacheKeyBase *clone() const = 0;
57 virtual UBool operator == (const CacheKeyBase &other) const = 0;
84 UBool operator != (const CacheKeyBase &other) const {
96 * Templated version of CacheKeyBase.
100 class CacheKey : public CacheKeyBase {
    [all...]
unifiedcache.cpp 49 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer;
55 const CacheKeyBase *p1 = (const CacheKeyBase *) key1.pointer;
56 const CacheKeyBase *p2 = (const CacheKeyBase *) key2.pointer;
62 CacheKeyBase *p = (CacheKeyBase *) obj;
66 CacheKeyBase::~CacheKeyBase() {
    [all...]

Completed in 84 milliseconds