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

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java110 private long[] mSuggestedContactIds = new long[0]; field in class:AggregationSuggestionEngine
250 mSuggestedContactIds = new long[0];
315 int count = mSuggestedContactIds.length;
320 sb.append(mSuggestedContactIds[i]);
335 boolean changed = count != mSuggestedContactIds.length;
339 if (Arrays.binarySearch(mSuggestedContactIds, contactId) < 0) {
347 mSuggestedContactIds = new long[count];
351 mSuggestedContactIds[i] = cursor.getLong(0);
353 Arrays.sort(mSuggestedContactIds);

Completed in 53 milliseconds