Lines Matching full:keys
28 * \brief C++ API: Keys for comparing strings multiple times.
44 * Collation keys are generated by the Collator class. Use the CollationKey objects
65 * CollationKey* keys = new CollationKey [3];
66 * myCollator->getCollationKey("Tom", keys[0], success );
67 * myCollator->getCollationKey("Dick", keys[1], success );
68 * myCollator->getCollationKey("Harry", keys[2], success );
70 * // Inside body of sort routine, compare keys this way:
72 * if(keys[0].compareTo( keys[1] ) > 0 ) {
73 * tmp = keys[0]; keys[0] = keys[1]; keys[1] = tmp;
79 * long lists of words by retrieving collation keys with Collator::getCollationKey().
80 * You can then cache the collation keys and compare them using CollationKey::compareTo().
101 * collation keys, the result is Collator::EQUAL. Comparing empty collation key
138 * Compare if two collation keys are the same.
140 * @return Returns true if two collation keys are equal, false otherwise.
146 * Compare if two collation keys are not the same.
148 * @return Returns TRUE if two collation keys are different, FALSE otherwise.
187 * two collation keys.
199 * two collation keys.