Lines Matching refs:other
40 CacheKeyBase(const CacheKeyBase &other)
41 : UObject(other), fCreationStatus(other.fCreationStatus), fIsMaster(FALSE) { }
57 virtual UBool operator == (const CacheKeyBase &other) const = 0;
84 UBool operator != (const CacheKeyBase &other) const {
85 return !(*this == other);
124 virtual UBool operator == (const CacheKeyBase &other) const {
125 return typeid(*this) == typeid(other);
139 LocaleCacheKey(const LocaleCacheKey<T> &other)
140 : CacheKey<T>(other), fLoc(other.fLoc) { }
145 virtual UBool operator == (const CacheKeyBase &other) const {
147 if (this == &other) {
150 if (!CacheKey<T>::operator == (other)) {
153 // We know this and other are of same class because operator== on
156 static_cast<const LocaleCacheKey<T> *>(&other);
353 UnifiedCache(const UnifiedCache &other);
354 UnifiedCache &operator=(const UnifiedCache &other);