Searched defs:index1 (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/model/
H A DEntitySet.java204 private void buildSplitContactDiff(ArrayList<ContentProviderOperation> diff, int index1, argument
210 Long rawContactId1 = get(index1).getValues().getAsLong(RawContacts._ID);
214 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1, backRefs[index1]);
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java874 * Moves the item at index1 to index2.
875 * @param index1
878 public void moveQueueItem(int index1, int index2) { argument
880 if (index1 >= mPlayListLen) {
881 index1 = mPlayListLen - 1;
886 if (index1 < index2) {
887 long tmp = mPlayList[index1];
888 for (int i = index1; i < index2; i++) {
892 if (mPlayPos == index1) {
894 } else if (mPlayPos >= index1
[all...]

Completed in 38 milliseconds