Home | History | Annotate | Download | only in unicode

Lines Matching refs:ucollator

779     UCollator *ucollator;
840 * Creates the c struct for ucollator
847 * Creates the c struct for ucollator
854 * Creates the c struct for ucollator. This used internally by StringSearch.
855 * Hence the responsibility of cleaning up the ucollator is not done by
857 * @param collator new ucollator data
859 void setUCollator(UCollator *collator);
863 * Get UCollator data struct. Used only by StringSearch & intltest.
864 * @return UCollator data struct
867 const UCollator * getUCollator();
881 // if not owned and not a write through alias, copy the ucollator
922 inline void RuleBasedCollator::setUCollator(UCollator *collator)
925 if (ucollator && dataIsOwned) {
926 ucol_close(ucollator);
928 ucollator = collator;
934 inline const UCollator * RuleBasedCollator::getUCollator()
936 return ucollator;