HomeSort by relevance Sort by last modified time
    Searched full:nextpos (Results 1 - 21 of 21) 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;
  /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 165 int nextPos;
168 nextPos = end;
169 ref = spec.substring(pos + 1, nextPos);
172 nextPos = UrlUtils.findFirstOf(spec, "#", pos, end);
173 query = spec.substring(pos + 1, nextPos);
177 nextPos = UrlUtils.findFirstOf(spec, "?#", pos, end);
178 path = relativePath(path, spec.substring(pos, nextPos));
183 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 337 int nextPos = 0; // Counts code units.
341 nextPos = pos + Math.min(limit, textLen - pos);
344 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(text, pos, limit,
348 nextPos = pos + Math.min(limit / 2, textLen - pos);
350 if ((nextPos <= pos) || (nextPos > textLen)) {
351 Rlog.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
352 nextPos + " >= " + textLen + ")");
355 result.add(text.substring(pos, nextPos));
356 pos = nextPos;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_policy.cpp 33 int nextPos = dicNode->getChildrenPos();
34 if (nextPos < 0 || nextPos >= mDictBufferSize) {
36 nextPos, mDictBufferSize);
41 mDictRoot, &nextPos);
43 if (nextPos < 0 || nextPos >= mDictBufferSize) {
45 nextPos, mDictBufferSize, i, childCount);
49 nextPos = createAndGetLeavingChildNode(dicNode, nextPos, childDicNodes)
    [all...]
  /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 405 int8_t* nextPos = res + len;
406 if (cache->memBlocks == NULL || nextPos > cache->curMemBlockEnd) {
416 nextPos = res + len;
418 CACHE_NOISY(ALOGI("cache_malloc: ret %p size %d, block=%p, nextPos=%p",
419 res, len, cache->memBlocks, nextPos));
420 cache->curMemBlockAvail = nextPos;
  /cts/suite/pts/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/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 1010 var nextPos = args.indexOf(' ');
1011 var arg1 = (nextPos > 0) ? args.substring(0, nextPos) : args;
1019 var arg2 = (nextPos > 0) ?
1020 args.substring(nextPos + 1, args.length) : 'all';
1033 var arg2 = (nextPos > 0) ?
1034 args.substring(nextPos + 1, args.length) : null;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
rbbitst.cpp     [all...]
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
  /external/v8/src/
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;
    [all...]
  /bionic/libc/kernel/tools/
cpp.py 889 # all the isXXX functions returns a (expr,nextpos) pair if a match is found
1019 # the is_xxxxx function returns either None or a pair (e,nextpos)
1020 # where 'e' is an expression tuple (e.g. (op,arg)) and 'nextpos' is
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /external/svox/pico/lib/
picospho.c     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 2523 milliseconds