OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pinnedqueue
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoritesTileAdapter.java
546
final PriorityQueue<ContactEntry>
pinnedQueue
=
562
pinnedQueue
.add(contact);
566
final int maxToPin = Math.min(PIN_LIMIT,
pinnedQueue
.size() + unpinnedContacts.size());
570
if (!
pinnedQueue
.isEmpty() &&
pinnedQueue
.peek().pinned <= i) {
571
final ContactEntry toPin =
pinnedQueue
.poll();
583
while (!
pinnedQueue
.isEmpty()) {
584
final ContactEntry entry =
pinnedQueue
.poll();
Completed in 822 milliseconds