HomeSort by relevance Sort by last modified time
    Searched full:nextpos (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/v8/test/intl/break-iterator/
en-break.js 39 var nextPos = iterator.next();
40 if (nextPos === -1) break;
42 slices.push(textToSegment.slice(pos, nextPos));
45 pos = nextPos;
zh-break.js 40 var nextPos = iterator.next();
41 if (nextPos === -1) break;
43 slices.push(textToSegment.slice(pos, nextPos));
46 pos = nextPos;
  /external/fonttools/Lib/fontTools/misc/
psLib.py 53 _, nextpos = whitematch(self.buf, self.pos).span()
54 self.pos = nextpos
66 _, nextpos = commentmatch(buf, pos).span()
67 token = buf[pos:nextpos]
73 _, nextpos = m.span()
74 token = buf[pos:nextpos]
80 _, nextpos = m.span()
81 token = buf[pos:nextpos]
93 _, nextpos = m.span()
94 token = buf[pos:nextpos]
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 106 int nextPos = 1;
110 while (currentPos > mPositions[nextPos]) {
111 prevPos = nextPos++;
115 (mPositions[nextPos] - mPositions[prevPos]);
117 mGradient[i] = computeColor(mColors[prevPos], mColors[nextPos], percent);
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 167 int nextPos;
170 nextPos = end;
171 ref = spec.substring(pos + 1, nextPos);
174 nextPos = UrlUtils.findFirstOf(spec, "#", pos, end);
175 query = spec.substring(pos + 1, nextPos);
179 nextPos = UrlUtils.findFirstOf(spec, "?#", pos, end);
180 path = relativePath(path, spec.substring(pos, nextPos));
185 pos = nextPos;
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 841 int nextPos = index;
842 char c = desc.charAt(nextPos);
845 c = desc.charAt(++nextPos);
851 c = desc.charAt(++nextPos);
856 c = desc.charAt(++nextPos);
859 nextPos = desc.indexOf(';', nextPos) + 1;
860 if (nextPos <= 0)
864 ++nextPos;
867 index = nextPos;
    [all...]
CodeIterator.java 857 int nextPos;
860 for (; i < endPos; i = nextPos) {
867 nextPos = nextOpcode(code, i);
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java 379 int nextPos = 0; // Counts code units.
383 nextPos = pos + Math.min(limit, textLen - pos);
386 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit,
390 nextPos = pos + Math.min(limit / 2, textLen - pos);
392 if ((nextPos <= pos) || (nextPos > textLen)) {
393 Rlog.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
394 nextPos + " >= " + textLen + ")");
397 result.add(newMsgBody.substring(pos, nextPos));
398 pos = nextPos;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.cpp 38 int nextPos = dicNode->getChildrenPtNodeArrayPos();
39 if (nextPos < 0 || nextPos >= mDictBufferSize) {
41 nextPos, mDictBufferSize);
47 mDictRoot, &nextPos);
49 if (nextPos < 0 || nextPos >= mDictBufferSize) {
51 nextPos, mDictBufferSize, i, childCount);
56 nextPos = createAndGetLeavingChildNode(dicNode, nextPos, childDicNodes)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fImplementationLimitTests.cpp 334 const size_t nextPos = extensionStr.find(' ', pos);
335 const size_t len = nextPos == string::npos ? extensionStr.length()-pos : nextPos-pos;
340 if (nextPos == string::npos)
343 pos = nextPos+1;
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 659 int nextPos = listPos + 1;
660 if (nextPos < mRowInfo.size()) {
661 nextPos = getCursorPosition(nextPos);
662 if (nextPos >= 0) {
663 return -nextPos;
  /frameworks/native/cmds/installd/
utils.c 517 int8_t* nextPos = res + len;
518 if (cache->memBlocks == NULL || nextPos > cache->curMemBlockEnd) {
528 nextPos = res + len;
530 CACHE_NOISY(ALOGI("cache_malloc: ret %p size %d, block=%p, nextPos=%p",
531 res, len, cache->memBlocks, nextPos));
532 cache->curMemBlockAvail = nextPos;
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 281 var nextPos = j * rowSize + 1;
287 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
  /external/chromium_org/v8/benchmarks/
navier-stokes.js 263 var nextPos = j * rowSize + 1;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
  /external/chromium_org/v8/src/
d8.js 987 var nextPos = args.indexOf(' ');
988 var arg1 = (nextPos > 0) ? args.substring(0, nextPos) : args;
996 var arg2 = (nextPos > 0) ?
997 args.substring(nextPos + 1, args.length) : 'all';
1010 var arg2 = (nextPos > 0) ?
1011 args.substring(nextPos + 1, args.length) : null;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
rbbitst.cpp     [all...]
  /external/icu/icu4c/source/test/intltest/
rbbitst.cpp     [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /external/svox/pico/lib/
picospho.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
codemirror.js     [all...]
  /external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
codemirror.js     [all...]
  /external/skia/experimental/webtry/res/js/cm/
codemirror.js     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1433 milliseconds