Searched refs:leftCase (Results 1 - 6 of 6) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationCompare.java182 int leftCase, leftLower32, rightCase;
192 leftCase = (int) ce;
193 } while ((ce >>> 32) == 0 || leftCase == 0);
194 leftLower32 = leftCase;
195 leftCase &= 0xc000;
218 leftCase = (int) left.getCE(leftIndex++);
219 } while ((leftCase & 0xffff0000) == 0);
220 leftLower32 = leftCase;
221 leftCase &= 0xc000;
232 if (leftCase !
[all...]
H A DCollationFastLatin.java527 int leftCase = leftPair & 0xffff;
529 if(leftCase != rightCase) {
531 return (leftCase < rightCase) ? Collation.LESS : Collation.GREATER;
533 return (leftCase < rightCase) ? Collation.GREATER : Collation.LESS;
/external/icu/icu4c/source/i18n/
H A Dcollationcompare.cpp188 uint32_t leftCase, leftLower32, rightCase; local
198 leftCase = (uint32_t)ce;
199 } while((uint32_t)(ce >> 32) == 0 || leftCase == 0);
200 leftLower32 = leftCase;
201 leftCase &= 0xc000;
224 leftCase = (uint32_t)left.getCE(leftIndex++);
225 } while(leftCase <= 0xffff);
226 leftLower32 = leftCase;
227 leftCase &= 0xc000;
238 if(leftCase !
[all...]
H A Dcollationfastlatin.cpp324 uint32_t leftCase = leftPair & 0xffff; local
326 if(leftCase != rightCase) {
328 return (leftCase < rightCase) ? UCOL_LESS : UCOL_GREATER;
330 return (leftCase < rightCase) ? UCOL_GREATER : UCOL_LESS;
675 uint32_t leftCase = leftPair & 0xffff; local
677 if(leftCase != rightCase) {
679 return (leftCase < rightCase) ? UCOL_LESS : UCOL_GREATER;
681 return (leftCase < rightCase) ? UCOL_GREATER : UCOL_LESS;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationCompare.java178 int leftCase, leftLower32, rightCase;
188 leftCase = (int) ce;
189 } while ((ce >>> 32) == 0 || leftCase == 0);
190 leftLower32 = leftCase;
191 leftCase &= 0xc000;
214 leftCase = (int) left.getCE(leftIndex++);
215 } while ((leftCase & 0xffff0000) == 0);
216 leftLower32 = leftCase;
217 leftCase &= 0xc000;
228 if (leftCase !
[all...]
H A DCollationFastLatin.java523 int leftCase = leftPair & 0xffff;
525 if(leftCase != rightCase) {
527 return (leftCase < rightCase) ? Collation.LESS : Collation.GREATER;
529 return (leftCase < rightCase) ? Collation.GREATER : Collation.LESS;

Completed in 79 milliseconds