/external/icu/icu4c/source/i18n/ |
D | collationfastlatin.cpp | 121 int32_t leftIndex = 0, rightIndex = 0; in compareUTF16() local 131 if(leftIndex == leftLength) { in compareUTF16() 135 UChar32 c = left[leftIndex++]; in compareUTF16() 155 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength); in compareUTF16() 214 leftIndex = rightIndex = 0; in compareUTF16() 218 if(leftIndex == leftLength) { in compareUTF16() 222 UChar32 c = left[leftIndex++]; in compareUTF16() 237 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength); in compareUTF16() 290 leftIndex = rightIndex = 0; in compareUTF16() 294 if(leftIndex == leftLength) { in compareUTF16() [all …]
|
D | collationcompare.cpp | 112 int32_t leftIndex = 0; in compareUpToQuaternary() local 117 leftSecondary = ((uint32_t)left.getCE(leftIndex++)) >> 16; in compareUpToQuaternary() 152 int32_t leftIndex = leftLimit; in compareUpToQuaternary() local 156 while(leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 157 leftSecondary = ((uint32_t)left.getCE(--leftIndex)) >> 16; in compareUpToQuaternary() 185 int32_t leftIndex = 0; in compareUpToQuaternary() local 197 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 224 leftCase = (uint32_t)left.getCE(leftIndex++); in compareUpToQuaternary() 252 int32_t leftIndex = 0; in compareUpToQuaternary() local 258 leftLower32 = (uint32_t)left.getCE(leftIndex++); in compareUpToQuaternary() [all …]
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationCompare.java | 98 int leftIndex = 0; in compareUpToQuaternary() local 103 leftSecondary = ((int) left.getCE(leftIndex++)) >>> 16; in compareUpToQuaternary() 138 int leftIndex = leftLimit; in compareUpToQuaternary() local 142 while (leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 143 leftSecondary = ((int) left.getCE(--leftIndex)) >>> 16; in compareUpToQuaternary() 175 int leftIndex = 0; in compareUpToQuaternary() local 187 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 214 leftCase = (int) left.getCE(leftIndex++); in compareUpToQuaternary() 246 int leftIndex = 0; in compareUpToQuaternary() local 252 leftLower32 = (int) left.getCE(leftIndex++); in compareUpToQuaternary() [all …]
|
D | CollationFastLatin.java | 292 int leftIndex = startIndex, rightIndex = startIndex; in compareUTF16() local 302 if(leftIndex == left.length()) { in compareUTF16() 306 int c = left.charAt(leftIndex++); in compareUTF16() 326 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 328 ++leftIndex; in compareUTF16() 395 leftIndex = rightIndex = startIndex; in compareUTF16() 399 if(leftIndex == left.length()) { in compareUTF16() 403 int c = left.charAt(leftIndex++); in compareUTF16() 418 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 420 ++leftIndex; in compareUTF16() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationCompare.java | 102 int leftIndex = 0; in compareUpToQuaternary() local 107 leftSecondary = ((int) left.getCE(leftIndex++)) >>> 16; in compareUpToQuaternary() 142 int leftIndex = leftLimit; in compareUpToQuaternary() local 146 while (leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 147 leftSecondary = ((int) left.getCE(--leftIndex)) >>> 16; in compareUpToQuaternary() 179 int leftIndex = 0; in compareUpToQuaternary() local 191 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 218 leftCase = (int) left.getCE(leftIndex++); in compareUpToQuaternary() 250 int leftIndex = 0; in compareUpToQuaternary() local 256 leftLower32 = (int) left.getCE(leftIndex++); in compareUpToQuaternary() [all …]
|
D | CollationFastLatin.java | 296 int leftIndex = startIndex, rightIndex = startIndex; in compareUTF16() local 306 if(leftIndex == left.length()) { in compareUTF16() 310 int c = left.charAt(leftIndex++); in compareUTF16() 330 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 332 ++leftIndex; in compareUTF16() 399 leftIndex = rightIndex = startIndex; in compareUTF16() 403 if(leftIndex == left.length()) { in compareUTF16() 407 int c = left.charAt(leftIndex++); in compareUTF16() 422 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 424 ++leftIndex; in compareUTF16() [all …]
|
/external/v8/src/js/ |
D | typedarray.js | 386 for (var leftIndex = 0; 387 leftIndex < sourceLength && targetPtr <= sourcePtr; 388 leftIndex++) { 389 target[offset + leftIndex] = source[leftIndex]; 393 return leftIndex; 395 var leftIndex = CopyLeftPart(); 407 rightIndex >= leftIndex && targetPtr >= sourcePtr; 417 var temp = new GlobalArray(rightIndex + 1 - leftIndex); 418 for (var i = leftIndex; i <= rightIndex; i++) { 419 temp[i - leftIndex] = source[i]; [all …]
|
/external/icu/icu4c/source/test/perf/collperf2/ |
D | collperf2.cpp | 1274 int32_t leftIndex = *(const int32_t*)left; in U16CollatorComparator() local 1277 return ac.coll.compare(d16->dataOf(leftIndex), d16->lengthOf(leftIndex), in U16CollatorComparator() 1285 int32_t leftIndex = *(const int32_t*)left; in U16HashComparator() local 1287 int32_t leftHash = ustr_hashUCharsN(d16->dataOf(leftIndex), d16->lengthOf(leftIndex)); in U16HashComparator()
|
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.4_r1-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |