Searched defs:index2 (Results 1 - 3 of 3) sorted by relevance

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntitySet.java205 int index2, int[] backRefs) {
217 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID);
221 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, backRefs[index2]);
204 buildSplitContactDiff(ArrayList<ContentProviderOperation> diff, int index1, int index2, int[] backRefs) argument
/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactDeltaList.java259 int index2, int[] backRefs) {
274 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID);
275 int backRef2 = backRefs[index2];
258 buildSplitContactDiff(ArrayList<ContentProviderOperation> diff, int index1, int index2, int[] backRefs) argument
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java950 * Moves the item at index1 to index2.
952 * @param index2
954 public void moveQueueItem(int index1, int index2) { argument
959 if (index2 >= mPlayListLen) {
960 index2 = mPlayListLen - 1;
962 if (index1 < index2) {
964 for (int i = index1; i < index2; i++) {
967 mPlayList[index2] = tmp;
969 mPlayPos = index2;
970 } else if (mPlayPos >= index1 && mPlayPos <= index2) {
[all...]

Completed in 607 milliseconds