Searched refs:curIndex (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DComprehensionTlv.java116 int curIndex = startIndex;
123 int temp = data[curIndex++] & 0xff;
129 ", startIndex=" + startIndex + " curIndex=" + curIndex +
136 tag = ((data[curIndex] & 0xff) << 8)
137 | (data[curIndex + 1] & 0xff);
140 curIndex += 2;
152 temp = data[curIndex++] & 0xff;
156 length = data[curIndex++] & 0xff;
161 " startIndex=" + startIndex + " curIndex
[all...]
H A DBerTlv.java68 int curIndex = 0;
74 tag = data[curIndex++] & 0xff;
77 int temp = data[curIndex++] & 0xff;
81 temp = data[curIndex++] & 0xff;
86 " curIndex=" + curIndex + " endIndex=" + endIndex);
94 " byte= " + Integer.toHexString(temp) + " curIndex=" + curIndex +
100 curIndex = 0;
106 " curIndex
[all...]
/frameworks/base/core/tests/coretests/src/android/content/
H A DAssetTest.java40 int curIndex = 0;
43 assertEquals("At index " + curIndex
44 + " expected " + expectedString.charAt(curIndex)
46 buffer[i], expectedString.charAt(curIndex));
47 curIndex++;
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberFormattingTextWatcher.java131 int curIndex = cursor - 1;
146 if (i == curIndex) {
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java826 int curIndex = mDropDownList.getSelectedItemPosition();
845 if ((below && keyCode == KeyEvent.KEYCODE_DPAD_UP && curIndex <= firstItem) ||
846 (!below && keyCode == KeyEvent.KEYCODE_DPAD_DOWN && curIndex >= lastItem)) {
886 if (curIndex == lastItem) {
890 curIndex == firstItem) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java918 int curIndex = -1;
920 for (curIndex = 0; curIndex < mItems.size(); curIndex++) {
921 final ItemInfo ii = mItems.get(curIndex);
929 curItem = addNewItem(mCurItem, curIndex);
937 int itemIndex = curIndex - 1;
953 curIndex--;
963 curIndex++;
969 itemIndex = curIndex
1059 calculatePageOffsets(ItemInfo curItem, int curIndex, ItemInfo oldCurInfo) argument
[all...]

Completed in 189 milliseconds