Searched refs:nextPos (Results 1 – 7 of 7) sorted by relevance
/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/v8/src/ |
D | d8.js | 1064 var nextPos = args.indexOf(' '); 1065 var arg1 = (nextPos > 0) ? args.substring(0, nextPos) : args; 1073 var arg2 = (nextPos > 0) ? 1074 args.substring(nextPos + 1, args.length) : 'all'; 1087 var arg2 = (nextPos > 0) ? 1088 args.substring(nextPos + 1, args.length) : null;
|
/external/icu4c/test/intltest/ |
D | rbbitst.cpp | 2633 … virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 2824 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar… in rule9Adjust() argument 2831 int32_t nPos = *nextPos; in rule9Adjust() 2859 *nextPos = nPos; in rule9Adjust() 2878 int32_t nextPos; // Index of the next character following pos. in next() local 2899 nextPos = nextCPPos = startPos; in next() 2911 pos = nextPos; in next() 2915 nextPos = nextCPPos; in next() 2927 nextCPPos = nextPos = fText->moveIndex32(pos, 1); in next() 2928 c = fText->char32At(nextPos); in next() [all …]
|
/external/v8/benchmarks/ |
D | navier-stokes.js | 263 var nextPos = j * rowSize + 1; 269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityObject.cpp | 624 VisiblePosition nextPos = visiblePos.next(); in nextParagraphEndPosition() local 625 if (nextPos.isNull()) in nextParagraphEndPosition() 628 return endOfParagraph(nextPos); in nextParagraphEndPosition()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 1745 VisiblePosition nextPos = forward ? pos.next() : pos.previous(); in trimSelectionPosition() local 1746 movedTooFar = nextPos.isNull() || pos == nextPos in trimSelectionPosition() 1747 || ((comparePositions(nextPos, stop) < 0) != forward); in trimSelectionPosition() 1748 pos = nextPos; in trimSelectionPosition()
|