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

1 2 3

  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsMessageBase.java 363 int nextPos = Math.min(currentPosition + byteLimit / 2, msgBody.length());
367 if (nextPos < msgBody.length()) {
370 if (!breakIterator.isBoundary(nextPos)) {
371 int breakPos = breakIterator.preceding(nextPos);
372 while (breakPos + 4 <= nextPos
381 nextPos = breakPos;
382 } else if (Character.isHighSurrogate(msgBody.charAt(nextPos - 1))) {
384 nextPos -= 1;
388 return nextPos;
416 int nextPos = findNextUnicodePosition(pos, maxUserDataBytesWithHeader
    [all...]
  /frameworks/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);
  /build/blueprint/parser/
sort.go 47 nextPos := list.End()
49 nextPos = list.Values[j].Pos()
51 sortSubList(list.Values[i:j], nextPos, file)
93 func sortSubList(values []Expression, nextPos scanner.Position, file *File) {
100 n := nextPos
126 if c.Pos().Offset > e.pos.Offset && c.Pos().Offset < e.nextPos.Offset {
132 curPos.Offset += e.nextPos.Offset - e.pos.Offset
157 nextPos scanner.Position
parser_test.go 1109 nextPos := make([]scanner.Position, len(mod.Properties))
1111 nextPos[i] = mod.Properties[i+1].Pos()
1113 nextPos[len(mod.Properties)-1] = mod.RBracePos
1116 endOffset := nextPos[i].Offset - len(",\n")
1117 endLine := nextPos[i].Line - 1
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 38 int nextPos = dicNode->getChildrenPtNodeArrayPos();
39 if (!isValidPos(nextPos)) {
41 nextPos, mBuffer.size());
47 mBuffer.data(), &nextPos);
49 if (!isValidPos(nextPos)) {
51 nextPos, mBuffer.size(), i, childCount);
56 nextPos = createAndGetLeavingChildNode(dicNode, nextPos, childDicNodes);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncAdapter.java 125 long nextPos = insertionStartTimeSec;
126 for (int i = 0; nextPos < insertionEndSec; ++i) {
127 long programStartSec = nextPos;
154 nextPos = insertionStartTimeSec + i * durationSumSec;
  /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/base/telephony/java/android/telephony/
SmsMessage.java 430 int nextPos = 0; // Counts code units.
434 nextPos = pos + Math.min(limit, textLen - pos);
437 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit,
441 nextPos = SmsMessageBase.findNextUnicodePosition(pos, limit, newMsgBody);
443 if ((nextPos <= pos) || (nextPos > textLen)) {
444 Rlog.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
445 nextPos + " >= " + textLen + ")");
448 result.add(newMsgBody.substring(pos, nextPos));
449 pos = nextPos;
    [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/rs/
rsScriptC.cpp 82 int nextPos = cacheDirString.find(OS_PATH_SEPARATOR_STR, currPos + 1);
84 if (nextPos > 0) {
86 currentDir += cacheDirString.substr(currPos, nextPos - currPos);
92 currPos = nextPos;
  /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;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestMonkey.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestMonkey.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderPagedView.java 669 int nextPos = i + direction;
670 View v = page.getChildAt(nextPos % mGridCountX, nextPos / mGridCountX);
  /prebuilts/go/darwin-x86/src/regexp/
exec.go 196 // which starts at position pos and ends at nextPos.
198 func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond syntax.EmptyOp) {
242 t = m.add(nextq, i.Out, nextPos, t.cap, nextCond, t)
  /prebuilts/go/linux-x86/src/regexp/
exec.go 196 // which starts at position pos and ends at nextPos.
198 func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond syntax.EmptyOp) {
242 t = m.add(nextq, i.Out, nextPos, t.cap, nextCond, t)
  /external/icu/icu4c/source/test/intltest/
rbbitst.cpp     [all...]
  /external/v8/benchmarks/
navier-stokes.js 263 var nextPos = j * rowSize + 1;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /external/annotation-tools/asmx/
javassist.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/tools/common/m2/repository/org/javassist/javassist/3.19.0-GA/
javassist-3.19.0-GA.jar 

Completed in 557 milliseconds

1 2 3