/external/chromium_org/v8/test/intl/break-iterator/ |
D | zh-break.js | 40 var nextPos = iterator.next(); variable 41 if (nextPos === -1) break; 43 slices.push(textToSegment.slice(pos, nextPos)); 46 pos = nextPos;
|
D | en-break.js | 39 var nextPos = iterator.next(); variable 40 if (nextPos === -1) break; 42 slices.push(textToSegment.slice(pos, nextPos)); 45 pos = nextPos;
|
/external/javassist/src/main/javassist/bytecode/ |
D | Descriptor.java | 841 int nextPos = index; in next() local 842 char c = desc.charAt(nextPos); in next() 845 c = desc.charAt(++nextPos); in next() 851 c = desc.charAt(++nextPos); in next() 856 c = desc.charAt(++nextPos); in next() 859 nextPos = desc.indexOf(';', nextPos) + 1; in next() 860 if (nextPos <= 0) in next() 864 ++nextPos; in next() 867 index = nextPos; in next()
|
D | CodeIterator.java | 857 int nextPos; in insertGap2() local 860 for (; i < endPos; i = nextPos) { in insertGap2() 867 nextPos = nextOpcode(code, i); in insertGap2() 951 while (i < nextPos) in insertGap2() 1158 int nextPos; in makeJumpList() local 1159 for (int i = 0; i < endPos; i = nextPos) { in makeJumpList() 1160 nextPos = nextOpcode(code, i); in makeJumpList()
|
/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/chromium_org/v8/src/ |
D | d8.js | 983 var nextPos = args.indexOf(' '); 984 var arg1 = (nextPos > 0) ? args.substring(0, nextPos) : args; 992 var arg2 = (nextPos > 0) ? 993 args.substring(nextPos + 1, args.length) : 'all'; 1006 var arg2 = (nextPos > 0) ? 1007 args.substring(nextPos + 1, args.length) : null;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | rbbitst.cpp | 2710 … virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 2897 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar… in rule9Adjust() argument 2904 int32_t nPos = *nextPos; in rule9Adjust() 2932 *nextPos = nPos; in rule9Adjust() 2951 int32_t nextPos; // Index of the next character following pos. in next() local 2972 nextPos = nextCPPos = startPos; in next() 2984 pos = nextPos; in next() 2988 nextPos = nextCPPos; in next() 3000 nextCPPos = nextPos = fText->moveIndex32(pos, 1); in next() 3001 c = fText->char32At(nextPos); in next() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbitst.cpp | 2710 … virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 2897 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar… in rule9Adjust() argument 2904 int32_t nPos = *nextPos; in rule9Adjust() 2932 *nextPos = nPos; in rule9Adjust() 2951 int32_t nextPos; // Index of the next character following pos. in next() local 2972 nextPos = nextCPPos = startPos; in next() 2984 pos = nextPos; in next() 2988 nextPos = nextCPPos; in next() 3000 nextCPPos = nextPos = fText->moveIndex32(pos, 1); in next() 3001 c = fText->char32At(nextPos); in next() [all …]
|
/external/chromium_org/v8/benchmarks/ |
D | navier-stokes.js | 263 var nextPos = j * rowSize + 1; 269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
|
/external/skia/experimental/webtry/res/js/cm/ |
D | codemirror.js | 2023 var array = [], nextPos; 2024 for (var pos = from; pos < to; pos = nextPos) { 2026 nextPos = pos + view.size;
|
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/ |
D | codemirror.js | 2023 var array = [], nextPos; 2024 for (var pos = from; pos < to; pos = nextPos) { 2026 nextPos = pos + view.size;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
D | codemirror.js | 2183 var array = [], nextPos; 2184 for (var pos = from; pos < to; pos = nextPos) { 2186 nextPos = pos + view.size;
|