Searched defs:index2 (Results 1 - 4 of 4) 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/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContactDeltaList.java253 int index2, int[] backRefs) {
268 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID);
269 int backRef2 = backRefs[index2];
252 buildSplitContactDiff(ArrayList<ContentProviderOperation> diff, int index1, int index2, int[] backRefs) argument
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java956 * Moves the item at index1 to index2.
958 * @param index2
960 public void moveQueueItem(int index1, int index2) { argument
965 if (index2 >= mPlayListLen) {
966 index2 = mPlayListLen - 1;
968 if (index1 < index2) {
970 for (int i = index1; i < index2; i++) {
973 mPlayList[index2] = tmp;
975 mPlayPos = index2;
976 } else if (mPlayPos >= index1 && mPlayPos <= index2) {
[all...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_state_utils.cpp582 const int index0, const int index1, const int index2) {
593 if (index2 < 0 || index2 > sampledInputSize - 1) {
597 const float nextDirection = getDirection(sampledInputXs, sampledInputYs, index1, index2);
579 getPointsAngle( const std::vector<int> *const sampledInputXs, const std::vector<int> *const sampledInputYs, const int index0, const int index1, const int index2) argument

Completed in 490 milliseconds