Home | History | Annotate | Download | only in unicode

Lines Matching refs:UCollator

751     UCollator *ucollator;
812 * Creates the c struct for ucollator
819 * Creates the c struct for ucollator
826 * Creates the c struct for ucollator. This used internally by StringSearch.
827 * Hence the responsibility of cleaning up the ucollator is not done by
829 * @param collator new ucollator data
832 void setUCollator(UCollator *collator);
836 * Get UCollator data struct. Used only by StringSearch & intltest.
837 * @return UCollator data struct
840 const UCollator * getUCollator();
854 // if not owned and not a write through alias, copy the ucollator
895 inline void RuleBasedCollator::setUCollator(UCollator *collator)
898 if (ucollator && dataIsOwned) {
899 ucol_close(ucollator);
901 ucollator = collator;
907 inline const UCollator * RuleBasedCollator::getUCollator()
909 return ucollator;