Home | History | Annotate | Download | only in unicode

Lines Matching refs:UClassID

48 /* UClassID-based RTTI */
52 * UClassID is used to identify classes without using the compiler's RTTI.
58 * described in detail below. UClassID values can be compared using
68 * virtual UClassID getDynamicClassID() const
79 * static UClassID U_EXPORT2 getStaticClassID();
85 * UClassID Derived::getStaticClassID()
86 * { return (UClassID)&Derived::fgClassID; }
91 typedef void* UClassID;
231 * ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class.
239 virtual UClassID getDynamicClassID() const;
294 UClassID U_EXPORT2 myClass::getStaticClassID() { \
296 return (UClassID)&classID; \
298 UClassID myClass::getDynamicClassID() const \
311 UClassID U_EXPORT2 myClass::getStaticClassID() { \
313 return (UClassID)&classID; \