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

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationCompare.java110 int rightSecondary;
112 rightSecondary = ((int) right.getCE(rightIndex++)) >>> 16;
113 } while (rightSecondary == 0);
115 if (leftSecondary != rightSecondary) {
116 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
150 int rightSecondary = 0;
151 while (rightSecondary == 0 && rightIndex > rightStart) {
152 rightSecondary = ((int) right.getCE(--rightIndex)) >>> 16;
155 if (leftSecondary != rightSecondary) {
156 return (leftSecondary < rightSecondary)
[all...]
H A DCollationFastLatin.java466 int rightSecondary = rightPair & 0xffff;
467 if(leftSecondary != rightSecondary) {
473 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
/external/icu/icu4c/source/i18n/
H A Dcollationcompare.cpp120 uint32_t rightSecondary; local
122 rightSecondary = ((uint32_t)right.getCE(rightIndex++)) >> 16;
123 } while(rightSecondary == 0);
125 if(leftSecondary != rightSecondary) {
126 return (leftSecondary < rightSecondary) ? UCOL_LESS : UCOL_GREATER;
160 int32_t rightSecondary = 0; local
161 while(rightSecondary == 0 && rightIndex > rightStart) {
162 rightSecondary = ((uint32_t)right.getCE(--rightIndex)) >> 16;
165 if(leftSecondary != rightSecondary) {
166 return (leftSecondary < rightSecondary)
[all...]
H A Dcollationfastlatin.cpp273 uint32_t rightSecondary = rightPair & 0xffff; local
274 if(leftSecondary != rightSecondary) {
280 return (leftSecondary < rightSecondary) ? UCOL_LESS : UCOL_GREATER;
624 uint32_t rightSecondary = rightPair & 0xffff; local
625 if(leftSecondary != rightSecondary) {
631 return (leftSecondary < rightSecondary) ? UCOL_LESS : UCOL_GREATER;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationCompare.java106 int rightSecondary;
108 rightSecondary = ((int) right.getCE(rightIndex++)) >>> 16;
109 } while (rightSecondary == 0);
111 if (leftSecondary != rightSecondary) {
112 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;
146 int rightSecondary = 0;
147 while (rightSecondary == 0 && rightIndex > rightStart) {
148 rightSecondary = ((int) right.getCE(--rightIndex)) >>> 16;
151 if (leftSecondary != rightSecondary) {
152 return (leftSecondary < rightSecondary)
[all...]
H A DCollationFastLatin.java462 int rightSecondary = rightPair & 0xffff;
463 if(leftSecondary != rightSecondary) {
469 return (leftSecondary < rightSecondary) ? Collation.LESS : Collation.GREATER;

Completed in 151 milliseconds