/external/icu/icu4c/source/i18n/ |
D | collationfastlatin.cpp | 123 int32_t leftIndex = 0, rightIndex = 0; in compareUTF16() local 133 if(leftIndex == leftLength) { in compareUTF16() 137 UChar32 c = left[leftIndex++]; in compareUTF16() 157 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength); in compareUTF16() 216 leftIndex = rightIndex = 0; in compareUTF16() 220 if(leftIndex == leftLength) { in compareUTF16() 224 UChar32 c = left[leftIndex++]; in compareUTF16() 239 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength); in compareUTF16() 292 leftIndex = rightIndex = 0; in compareUTF16() 296 if(leftIndex == leftLength) { in compareUTF16() [all …]
|
D | collationcompare.cpp | 114 int32_t leftIndex = 0; in compareUpToQuaternary() local 119 leftSecondary = ((uint32_t)left.getCE(leftIndex++)) >> 16; in compareUpToQuaternary() 154 int32_t leftIndex = leftLimit; in compareUpToQuaternary() local 158 while(leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 159 leftSecondary = ((uint32_t)left.getCE(--leftIndex)) >> 16; in compareUpToQuaternary() 187 int32_t leftIndex = 0; in compareUpToQuaternary() local 199 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 226 leftCase = (uint32_t)left.getCE(leftIndex++); in compareUpToQuaternary() 254 int32_t leftIndex = 0; in compareUpToQuaternary() local 260 leftLower32 = (uint32_t)left.getCE(leftIndex++); in compareUpToQuaternary() [all …]
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationCompare.java | 100 int leftIndex = 0; in compareUpToQuaternary() local 105 leftSecondary = ((int) left.getCE(leftIndex++)) >>> 16; in compareUpToQuaternary() 140 int leftIndex = leftLimit; in compareUpToQuaternary() local 144 while (leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 145 leftSecondary = ((int) left.getCE(--leftIndex)) >>> 16; in compareUpToQuaternary() 177 int leftIndex = 0; in compareUpToQuaternary() local 189 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 216 leftCase = (int) left.getCE(leftIndex++); in compareUpToQuaternary() 248 int leftIndex = 0; in compareUpToQuaternary() local 254 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/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationCompare.java | 104 int leftIndex = 0; in compareUpToQuaternary() local 109 leftSecondary = ((int) left.getCE(leftIndex++)) >>> 16; in compareUpToQuaternary() 144 int leftIndex = leftLimit; in compareUpToQuaternary() local 148 while (leftSecondary == 0 && leftIndex > leftStart) { in compareUpToQuaternary() 149 leftSecondary = ((int) left.getCE(--leftIndex)) >>> 16; in compareUpToQuaternary() 181 int leftIndex = 0; in compareUpToQuaternary() local 193 ce = left.getCE(leftIndex++); in compareUpToQuaternary() 220 leftCase = (int) left.getCE(leftIndex++); in compareUpToQuaternary() 252 int leftIndex = 0; in compareUpToQuaternary() local 258 leftLower32 = (int) left.getCE(leftIndex++); in compareUpToQuaternary() [all …]
|
D | CollationFastLatin.java | 300 int leftIndex = startIndex, rightIndex = startIndex; in compareUTF16() local 310 if(leftIndex == left.length()) { in compareUTF16() 314 int c = left.charAt(leftIndex++); in compareUTF16() 334 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 336 ++leftIndex; in compareUTF16() 403 leftIndex = rightIndex = startIndex; in compareUTF16() 407 if(leftIndex == left.length()) { in compareUTF16() 411 int c = left.charAt(leftIndex++); in compareUTF16() 426 long pairAndInc = nextPair(table, c, leftPair, left, leftIndex); in compareUTF16() 428 ++leftIndex; in compareUTF16() [all …]
|
/external/v8/src/js/ |
D | typedarray.js | 354 for (var leftIndex = 0; 355 leftIndex < sourceLength && targetPtr <= sourcePtr; 356 leftIndex++) { 357 target[offset + leftIndex] = source[leftIndex]; 361 return leftIndex; 363 var leftIndex = CopyLeftPart(); 375 rightIndex >= leftIndex && targetPtr >= sourcePtr; 385 var temp = new GlobalArray(rightIndex + 1 - leftIndex); 386 for (var i = leftIndex; i <= rightIndex; i++) { 387 temp[i - leftIndex] = source[i]; [all …]
|
/external/icu/icu4c/source/test/perf/collperf2/ |
D | collperf2.cpp | 1278 int32_t leftIndex = *(const int32_t*)left; in U16CollatorComparator() local 1281 return ac.coll.compare(d16->dataOf(leftIndex), d16->lengthOf(leftIndex), in U16CollatorComparator() 1289 int32_t leftIndex = *(const int32_t*)left; in U16HashComparator() local 1291 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/ ... |