Home | History | Annotate | Download | only in unicode

Lines Matching refs:AlphabeticIndex

81  * class AlphabeticIndex supports the creation of a UI index appropriate for a given language, such as:
107 * The AlphabeticIndex class is not intended for public subclassing.
119 * AlphabeticIndex index = new AlphabeticIndex(desiredLocale, status);
163 class U_I18N_API AlphabeticIndex: public UObject {
168 * Construct an AlphabeticIndex object for the specified locale. If the locale's
176 * of the AlphabeticIndex object fails.
179 AlphabeticIndex(const Locale &locale, UErrorCode &status);
193 virtual AlphabeticIndex &addLabels(const UnicodeSet &additions, UErrorCode &status);
208 virtual AlphabeticIndex &addLabels(const Locale &locale, UErrorCode &status);
214 virtual ~AlphabeticIndex();
219 * Ownership of the collator remains with the AlphabeticIndex instance.
253 virtual AlphabeticIndex &setInflowLabel(const UnicodeString &inflowLabel, UErrorCode &status);
276 virtual AlphabeticIndex &setOverflowLabel(const UnicodeString &overflowLabel, UErrorCode &status);
296 virtual AlphabeticIndex &setUnderflowLabel(const UnicodeString &underflowLabel, UErrorCode &status);
320 virtual AlphabeticIndex &setMaxLabelCount(int32_t maxLabelCount, UErrorCode &status);
355 virtual AlphabeticIndex &addRecord(const UnicodeString &name, const void *data, UErrorCode &status);
365 virtual AlphabeticIndex &clearRecords(UErrorCode &status);
466 virtual AlphabeticIndex &resetBucketIterator(UErrorCode &status);
509 virtual AlphabeticIndex &resetRecordIterator();
519 AlphabeticIndex(const AlphabeticIndex &other);
524 AlphabeticIndex &operator =(const AlphabeticIndex & /*other*/) { return *this;};
530 virtual UBool operator==(const AlphabeticIndex& other) const;
536 virtual UBool operator!=(const AlphabeticIndex& other) const;
550 * Delete all shared (static) data associated with an AlphabeticIndex.
583 AlphabeticIndex *alphaIndex_;
588 Record(AlphabeticIndex *alphaIndex, const UnicodeString &name, const void *data);
705 // Constants. Lazily initialized the first time an AlphabeticIndex object is created.