/external/javassist/src/main/javassist/bytecode/ |
D | Descriptor.java | 821 int nextPos = index; in next() local 822 char c = desc.charAt(nextPos); in next() 825 c = desc.charAt(++nextPos); in next() 831 c = desc.charAt(++nextPos); in next() 836 c = desc.charAt(++nextPos); in next() 839 nextPos = desc.indexOf(';', nextPos) + 1; in next() 840 if (nextPos <= 0) in next() 844 ++nextPos; in next() 847 index = nextPos; in next()
|
D | CodeIterator.java | 877 int nextPos; in insertGap2() local 880 for (; i < endPos; i = nextPos) { in insertGap2() 887 nextPos = nextOpcode(code, i); in insertGap2() 971 while (i < nextPos) in insertGap2() 1183 int nextPos; in makeJumpList() local 1184 for (int i = 0; i < endPos; i = nextPos) { in makeJumpList() 1185 nextPos = nextOpcode(code, i); in makeJumpList()
|
/external/okio/okio/src/hashFunctions/kotlin/okio/internal/ |
D | Md5.kt | 59 val nextPos = pos + 64 in update() constant 61 if (nextPos > limit) { in update() 70 pos = nextPos in update()
|
D | Sha1.kt | 60 val nextPos = pos + 64 in update() constant 62 if (nextPos > limit) { in update() 71 pos = nextPos in update()
|
D | Sha256.kt | 63 val nextPos = pos + 64 in update() constant 65 if (nextPos > limit) { in update() 74 pos = nextPos in update()
|
D | Sha512.kt | 63 val nextPos = pos + 128 in update() constant 65 if (nextPos > limit) { in update() 74 pos = nextPos in update()
|
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/animation-app/app/src/main/java/org/jetbrains/kotlinx/animation/ |
D | Animation.kt | 97 private fun Random.nextPos() = nextFloat() * INIT_POS + (1 - INIT_POS) / 2 in norm() method 101 shape.x = rnd.nextPos() in norm() 102 shape.y = rnd.nextPos() in norm()
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | TestCLDRTests.java | 222 int nextPos = value.indexOf('\n', pos); 223 if (nextPos < 0) 224 nextPos = value.length(); 225 String line = value.substring(pos, nextPos).trim(); // HACK for SAX 237 pos = nextPos + 1;
|
/external/deqp/modules/gles3/functional/ |
D | es3fImplementationLimitTests.cpp | 334 const size_t nextPos = extensionStr.find(' ', pos); in queryExtensionsNonIndexed() local 335 const size_t len = nextPos == string::npos ? extensionStr.length()-pos : nextPos-pos; in queryExtensionsNonIndexed() 340 if (nextPos == string::npos) in queryExtensionsNonIndexed() 343 pos = nextPos+1; in queryExtensionsNonIndexed()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | TestCldr.java | 349 int nextPos = value.indexOf('\n', pos); 350 if (nextPos < 0) 351 nextPos = value.length(); 352 String line = value.substring(pos, nextPos); 365 pos = nextPos + 1;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 883 int nextPos; // Index of the next character following pos. in next() local 899 nextPos = startPos; in next() 913 pos = nextPos; in next() 914 nextPos = moveIndex32(fText, pos, 1); in next() 934 if (nextPos == fText.length()) { in next() 937 int nextChar = UTF16.charAt(fText, nextPos); in next() 941 nextPos = moveIndex32(fText, nextPos, 1); in next() 1015 if (numEndIdx > nextPos) { in next() 1019 nextPos = numEndIdx; in next() 1091 if (nextPos < fText.length()) { in next() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 886 int nextPos; // Index of the next character following pos. in next() local 902 nextPos = startPos; in next() 916 pos = nextPos; in next() 917 nextPos = moveIndex32(fText, pos, 1); in next() 937 if (nextPos == fText.length()) { in next() 940 int nextChar = UTF16.charAt(fText, nextPos); in next() 944 nextPos = moveIndex32(fText, nextPos, 1); in next() 1018 if (numEndIdx > nextPos) { in next() 1022 nextPos = numEndIdx; in next() 1094 if (nextPos < fText.length()) { in next() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 60 nextPos = 0 70 nextPos = int(loca[i+1]) 71 glyphdata = data[pos:nextPos] 72 if len(glyphdata) != (nextPos - pos): 76 pos = nextPos 77 if len(data) - nextPos >= 4: 80 nextPos, len(data))
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbitst.cpp | 2687 … virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 2903 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar… in rule9Adjust() argument 2910 int32_t nPos = *nextPos; in rule9Adjust() 2938 *nextPos = nPos; in rule9Adjust() 2957 int32_t nextPos; // Index of the next character following pos. in next() local 2978 nextPos = nextCPPos = startPos; in next() 2990 pos = nextPos; in next() 2994 nextPos = nextCPPos; in next() 3007 nextCPPos = nextPos = fText->moveIndex32(pos, 1); in next() 3008 c = fText->char32At(nextPos); in next() [all …]
|