Home | History | Annotate | Download | only in unicode

Lines Matching refs:UCollator

686     UCollator *ucollator;
747 * Creates the c struct for ucollator
754 * Creates the c struct for ucollator
761 * Creates the c struct for ucollator. This used internally by StringSearch.
762 * Hence the responsibility of cleaning up the ucollator is not done by
764 * @param collator new ucollator data
766 void setUCollator(UCollator *collator);
771 * Get UCollator data struct. Used only by StringSearch & intltest.
772 * @return UCollator data struct
775 const UCollator * getUCollator();
789 // if not owned and not a write through alias, copy the ucollator
834 inline void RuleBasedCollator::setUCollator(UCollator *collator)
837 if (ucollator && dataIsOwned) {
838 ucol_close(ucollator);
840 ucollator = collator;
846 inline const UCollator * RuleBasedCollator::getUCollator()
848 return ucollator;