Home | History | Annotate | Download | only in collator

Lines Matching refs:coll

115     private void setCollNonIgnorable(RuleBasedCollator coll) {
116 if (coll != null) {
117 coll.setDecomposition(Collator.CANONICAL_DECOMPOSITION);
118 coll.setLowerCaseFirst(false);
119 coll.setCaseLevel(false);
120 coll.setStrength(isAtLeastUCA62 ? Collator.IDENTICAL : Collator.TERTIARY);
121 coll.setAlternateHandlingShifted(false);
125 private void setCollShifted(RuleBasedCollator coll) {
126 if (coll != null) {
127 coll.setDecomposition(Collator.CANONICAL_DECOMPOSITION);
128 coll.setLowerCaseFirst(false);
129 coll.setCaseLevel(false);
130 coll.setStrength(isAtLeastUCA62 ? Collator.IDENTICAL : Collator.QUATERNARY);
131 coll.setAlternateHandlingShifted(true);
184 private void conformanceTest(RuleBasedCollator coll) {
185 if (in == null || coll == null) {
189 if (coll.isAlternateHandlingShifted()) {
192 if (coll == rbUCA) {
219 coll.getRawCollationKey(buffer, newSk);
224 int cmpres = coll.compare(oldB, buffer);
225 int cmpres2 = coll.compare(buffer, oldB);
238 errln("Difference between coll.compare (" + cmpres + ") and sortkey compare (" + skres