HomeSort by relevance Sort by last modified time
    Searched refs:nextPos (Results 1 - 11 of 11) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyDetector.java 144 final int nextPos = insertPos + 1;
145 if (nextPos < distances.length) {
146 System.arraycopy(distances, insertPos, distances, nextPos,
147 distances.length - nextPos);
148 System.arraycopy(indices, insertPos, indices, nextPos,
149 indices.length - nextPos);
  /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;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 105 int nextPos = 1;
109 while (currentPos > mPositions[nextPos]) {
110 prevPos = nextPos++;
114 (mPositions[nextPos] - mPositions[prevPos]);
116 mGradient[i] = computeColor(mColors[prevPos], mColors[nextPos], percent);
  /frameworks/base/telephony/java/android/telephony/
SmsMessage.java 325 int nextPos = 0; // Counts code units.
329 nextPos = pos + Math.min(limit, textLen - pos);
332 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(text, pos, limit,
336 nextPos = pos + Math.min(limit / 2, textLen - pos);
338 if ((nextPos <= pos) || (nextPos > textLen)) {
339 Log.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
340 nextPos + " >= " + textLen + ")");
343 result.add(text.substring(pos, nextPos));
344 pos = nextPos;
    [all...]
  /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...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 637 int nextPos = listPos + 1;
638 if (nextPos < mRowInfo.size()) {
639 nextPos = getCursorPosition(nextPos);
640 if (nextPos >= 0) {
641 return -nextPos;
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 624 VisiblePosition nextPos = visiblePos.next();
625 if (nextPos.isNull())
628 return endOfParagraph(nextPos);
    [all...]
  /external/v8/src/
d8.js 1052 var nextPos = args.indexOf(' ');
1053 var arg1 = (nextPos > 0) ? args.substring(0, nextPos) : args;
1061 var arg2 = (nextPos > 0) ?
1062 args.substring(nextPos + 1, args.length) : 'all';
1075 var arg2 = (nextPos > 0) ?
1076 args.substring(nextPos + 1, args.length) : null;
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 207 milliseconds