Home | History | Annotate | Download | only in unicode

Lines Matching full:collator

45  * Collation keys are generated by the Collator class.  Use the CollationKey objects
46 * instead of Collator to compare strings multiple times. A CollationKey
47 * preprocesses the comparison information from the Collator object to
49 * multiple times, then using the Collator object is generally faster,
53 * <p>When comparing "Abernathy" to "Baggins-Smythworthy", Collator
65 * Collator* myCollator = Collator::createInstance(success);
79 * <p>Because Collator::compare()'s algorithm is complex, it is faster to sort
80 * long lists of words by retrieving collation keys with Collator::getCollationKey().
83 * <strong>Note:</strong> <code>Collator</code>s with different Locale,
91 * @see Collator
102 * collation keys, the result is Collator::EQUAL. Comparing empty collation key
103 * with non-empty collation key is always Collator::LESS.
189 * @return Returns Collator::LESS if sourceKey &lt; targetKey,
190 * Collator::GREATER if sourceKey > targetKey and Collator::EQUAL
194 Collator::EComparisonResult compareTo(const CollationKey& target) const;
214 * . Collator *myCollation = Collator::createInstance(Locale::US, status);