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

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
GradientShader.java 100 int nextPos = 1;
104 while (currentPos > mPositions[nextPos]) {
105 prevPos = nextPos++;
109 (mPositions[nextPos] - mPositions[prevPos]);
111 mGradient[i] = computeColor(mColors[prevPos], mColors[nextPos], percent);
  /frameworks/base/telephony/java/android/telephony/
SmsMessage.java 310 int nextPos = 0; // Counts code units.
314 nextPos = pos + Math.min(limit, textLen - pos);
317 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(text, pos, limit);
320 nextPos = pos + Math.min(limit / 2, textLen - pos);
322 if ((nextPos <= pos) || (nextPos > textLen)) {
323 Log.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
324 nextPos + " >= " + textLen + ")");
327 result.add(text.substring(pos, nextPos));
328 pos = nextPos;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AgendaByDayAdapter.java 371 int nextPos = listPos + 1;
372 if (nextPos < mRowInfo.size()) {
373 nextPos = getCursorPosition(nextPos);
374 if (nextPos >= 0) {
375 return -nextPos;
  /external/chromium/third_party/icu/source/test/intltest/
rbbitst.cpp     [all...]
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityObject.cpp 625 VisiblePosition nextPos = visiblePos.next();
626 if (nextPos.isNull())
629 return endOfParagraph(nextPos);
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 386 milliseconds