HomeSort by relevance Sort by last modified time
    Searched refs:UObject (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/icu4c/i18n/unicode/
measunit.h 36 class U_I18N_API MeasureUnit: public UObject {
43 virtual UObject* clone() const = 0;
56 virtual UBool operator==(const UObject& other) const = 0;
tmunit.h 65 virtual UObject* clone() const;
84 virtual UBool operator==(const UObject& other) const;
91 UBool operator!=(const UObject& other) const;
138 TimeUnit::operator!=(const UObject& other) const {
tmutamt.h 84 virtual UObject* clone() const;
100 virtual UBool operator==(const UObject& other) const;
109 UBool operator!=(const UObject& other) const;
158 TimeUnitAmount::operator!=(const UObject& other) const {
measure.h 45 class U_I18N_API Measure: public UObject {
77 virtual UObject* clone() const = 0;
90 UBool operator==(const UObject& other) const;
currunit.h 64 virtual UObject* clone() const;
77 UBool operator==(const UObject& other) const;
fieldpos.h 34 #include "unicode/uobject.h"
106 class U_I18N_API FieldPosition : public UObject {
119 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {}
133 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {}
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
  /external/icu4c/test/intltest/
uobjtest.h 29 * @param obj The UObject to be tested
35 UObject *testClass(UObject *obj,
39 UObject *testClassNoClassID(UObject *obj,
icusvtst.h 38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE);
52 void logstr(const UnicodeString& message, UObject* obj) {
  /external/icu4c/common/
uobject.cpp 8 * file name: uobject.h
17 #include "unicode/uobject.h"
92 UObject::~UObject() {}
96 // UClassID UObject::getStaticClassID() {
100 // UBool UObject::instanceOf(UClassID type) const {
serv.h 70 class U_COMMON_API ICUServiceKey : public UObject {
185 * UObject RTTI boilerplate.
190 * UObject RTTI boilerplate.
212 class U_COMMON_API ICUServiceFactory : public UObject {
232 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const = 0;
284 UObject* _instance;
299 SimpleFactory(UObject* instanceToAdopt, const UnicodeString& id, UBool visible = TRUE);
315 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const;
340 * UObject RTTI boilerplate.
345 * UObject RTTI boilerplate
    [all...]
servloc.h 158 * UObject boilerplate.
239 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const;
261 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const;
278 * UObject boilerplate.
302 UObject* _obj;
307 SimpleLocaleKeyFactory(UObject* objToAdopt,
312 SimpleLocaleKeyFactory(UObject* objToAdopt,
325 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const;
342 * UObject boilerplate.
401 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) cons (…)
    [all...]
resbund_cnv.cpp 28 :UObject(), fLocale(NULL)
35 :UObject(), fLocale(NULL)
servls.cpp 45 UObject*
51 UObject*
57 UObject*
63 UObject*
66 UObject* result = NULL;
96 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale,
106 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, UErrorCode& status)
112 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status)
118 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status)
130 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale, UErrorCode& status
    [all...]
servslkf.cpp 33 SimpleLocaleKeyFactory::SimpleLocaleKeyFactory(UObject* objToAdopt,
44 SimpleLocaleKeyFactory::SimpleLocaleKeyFactory(UObject* objToAdopt,
62 UObject*
dtintrv.cpp 33 : UObject(other) {
servnotf.h 26 #include "unicode/uobject.h"
34 class U_COMMON_API EventListener : public UObject {
  /external/icu4c/common/unicode/
parsepos.h 20 #include "unicode/uobject.h"
47 class U_COMMON_API ParsePosition : public UObject {
54 : UObject(),
65 : UObject(),
76 : UObject(copy),
unifunct.h 14 #include "unicode/uobject.h"
33 class U_COMMON_API UnicodeFunctor : public UObject {
90 * UOBJECT_DEFINE_RTTI_IMPLEMENTATION from uobject.h to
uobject.h 8 * file name: uobject.h
26 * \brief C++ API: Common ICU base class UObject.
97 * Common "boilerplate" functions are defined in UObject.
194 * UObject is the common ICU "boilerplate" class.
195 * UObject inherits UMemory (starting with ICU 2.4),
197 * are derived from UObject (starting with ICU 2.2).
199 * UObject contains common virtual functions like for ICU's "poor man's RTTI".
204 * The clone() function is not available in UObject because it is not
209 * (which itself is a subclass of UObject).
215 class U_COMMON_API UObject : public UMemory
    [all...]
dtintrv.h 16 #include "unicode/uobject.h"
32 class U_COMMON_API DateInterval : public UObject {
  /external/icu4c/i18n/
currunit.cpp 45 UObject* CurrencyUnit::clone() const {
52 UBool CurrencyUnit::operator==(const UObject& other) const {
measure.cpp 34 UObject(other), unit(0) {
51 UBool Measure::operator==(const UObject& other) const {
tmunit.cpp 82 UObject*
99 TimeUnit::operator==(const UObject& other) const {
tmutamt.cpp 47 TimeUnitAmount::operator==(const UObject& other) const {
51 UObject*
curramt.cpp 39 UObject* CurrencyAmount::clone() const {

Completed in 277 milliseconds

1 2 3 4 5