Home
last modified time | relevance | path

Searched refs:nextPos (Results 1 – 8 of 8) sorted by relevance

/external/v8/tools/
Dcsvparser.js39 let nextPos = string.indexOf("\\");
40 if (nextPos === -1) return string;
42 let result = string.substring(0, nextPos);
46 while (nextPos !== -1) {
47 let escapeIdentifier = string.charAt(nextPos + 1);
48 pos = nextPos + 2;
51 nextPos = pos;
54 nextPos = pos;
58 nextPos = pos + 2;
61 nextPos = pos + 4;
[all …]
/external/cldr/tools/java/org/unicode/cldr/test/
DTestCLDRTests.java219 int nextPos = value.indexOf('\n', pos);
220 if (nextPos < 0)
221 nextPos = value.length();
222 String line = value.substring(pos, nextPos).trim(); // HACK for SAX
234 pos = nextPos + 1;
/external/deqp/modules/gles3/functional/
Des3fImplementationLimitTests.cpp334 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/
DTestCldr.java347 int nextPos = value.indexOf('\n', pos);
348 if (nextPos < 0)
349 nextPos = value.length();
350 String line = value.substring(pos, nextPos);
363 pos = nextPos + 1;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java800 int nextPos; // Index of the next character following pos. in next() local
816 nextPos = startPos; in next()
830 pos = nextPos; in next()
831 nextPos = moveIndex32(fText, pos, 1); in next()
852 if (nextPos == fText.length()) { in next()
855 int nextChar = UTF16.charAt(fText, nextPos); in next()
859 nextPos = moveIndex32(fText, nextPos, 1); in next()
931 if (numEndIdx > nextPos) { in next()
935 nextPos = numEndIdx; in next()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java803 int nextPos; // Index of the next character following pos. in next() local
819 nextPos = startPos; in next()
833 pos = nextPos; in next()
834 nextPos = moveIndex32(fText, pos, 1); in next()
855 if (nextPos == fText.length()) { in next()
858 int nextChar = UTF16.charAt(fText, nextPos); in next()
862 nextPos = moveIndex32(fText, nextPos, 1); in next()
934 if (numEndIdx > nextPos) { in next()
938 nextPos = numEndIdx; in next()
/external/v8/benchmarks/
Dnavier-stokes.js263 var nextPos = j * rowSize + 1;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp2513 … virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
2719 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar… in rule9Adjust() argument
2726 int32_t nPos = *nextPos; in rule9Adjust()
2754 *nextPos = nPos; in rule9Adjust()
2773 int32_t nextPos; // Index of the next character following pos. in next() local
2794 nextPos = nextCPPos = startPos; in next()
2806 pos = nextPos; in next()
2810 nextPos = nextCPPos; in next()
2822 nextCPPos = nextPos = fText->moveIndex32(pos, 1); in next()
2823 c = fText->char32At(nextPos); in next()
[all …]