OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mContactsPreferences
(Results
1 - 12
of
12
) sorted by null
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/preference/
ContactsPreferencesTest.java
43
private ContactsPreferences
mContactsPreferences
;
63
mContactsPreferences
= new ContactsPreferences(mContext);
72
mContactsPreferences
.getSortOrder());
82
mContactsPreferences
.getSortOrder());
91
mContactsPreferences
.getDisplayOrder());
101
mContactsPreferences
.getDisplayOrder());
113
mContactsPreferences
.getSortOrder());
114
mContactsPreferences
.refreshValue(ContactsPreferences.SORT_ORDER_KEY);
117
mContactsPreferences
.getSortOrder());
129
mContactsPreferences
.getDisplayOrder())
[
all
...]
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
ContactDisplayUtilTests.java
40
@Mock private ContactsPreferences
mContactsPreferences
;
131
Mockito.when(
mContactsPreferences
.getDisplayOrder())
134
mContactsPreferences
));
138
Mockito.when(
mContactsPreferences
.getDisplayOrder()).thenReturn(-1);
140
NAME_ALTERNATIVE,
mContactsPreferences
));
144
Mockito.when(
mContactsPreferences
.getDisplayOrder())
147
NAME_ALTERNATIVE,
mContactsPreferences
));
151
Mockito.when(
mContactsPreferences
.getDisplayOrder())
154
NAME_ALTERNATIVE,
mContactsPreferences
));
177
Mockito.when(
mContactsPreferences
.getSortOrder()
[
all
...]
/packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
CallCardPresenterTest.java
37
@Mock private ContactsPreferences
mContactsPreferences
;
46
Mockito.when(
mContactsPreferences
.getDisplayOrder())
69
ContactsPreferencesFactory.setTestInstance(
mContactsPreferences
);
96
ContactsPreferencesFactory.setTestInstance(
mContactsPreferences
);
StatusBarNotifierTest.java
38
@Mock private ContactsPreferences
mContactsPreferences
;
47
Mockito.when(
mContactsPreferences
.getDisplayOrder())
81
ContactsPreferencesFactory.setTestInstance(
mContactsPreferences
);
ExternalCallNotifierTest.java
59
@Mock private ContactsPreferences
mContactsPreferences
;
78
when(
mContactsPreferences
.getDisplayOrder())
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
ConferenceParticipantListAdapter.java
210
@Nullable private final ContactsPreferences
mContactsPreferences
;
240
mContactsPreferences
= ContactsPreferencesFactory.newContactsPreferences(mContext);
253
if (
mContactsPreferences
!= null) {
254
mContactsPreferences
.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
255
mContactsPreferences
.refreshValue(ContactsPreferences.SORT_ORDER_KEY);
366
contactCache.nameAlternative,
mContactsPreferences
),
518
mContactsPreferences
),
526
mContactsPreferences
),
ExternalCallNotifier.java
114
private ContactsPreferences
mContactsPreferences
;
121
mContactsPreferences
= ContactsPreferencesFactory.newContactsPreferences(mContext);
249
info.setContentTitle(getContentTitle(mContext,
mContactsPreferences
,
CallCardPresenter.java
88
@Nullable private ContactsPreferences
mContactsPreferences
;
141
mContactsPreferences
= ContactsPreferencesFactory.newContactsPreferences(mContext);
169
if (
mContactsPreferences
!= null) {
170
mContactsPreferences
.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
[
all
...]
StatusBarNotifier.java
82
@Nullable private ContactsPreferences
mContactsPreferences
;
99
mContactsPreferences
= ContactsPreferencesFactory.newContactsPreferences(mContext);
434
contactInfo.nameAlternative,
mContactsPreferences
);
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoritesTileAdapter.java
73
private ContactsPreferences
mContactsPreferences
;
134
if (
mContactsPreferences
.getSortOrder() == ContactsPreferences.SORT_ORDER_PRIMARY
153
mContactsPreferences
= new ContactsPreferences(mContext);
204
mContactsPreferences
.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
205
mContactsPreferences
.refreshValue(ContactsPreferences.SORT_ORDER_KEY);
294
contact.nameDisplayOrder =
mContactsPreferences
.getDisplayOrder();
/packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java
130
mDetails.nameDisplayOrder =
mContactsPreferences
.getDisplayOrder();
217
private ContactsPreferences
mContactsPreferences
;
252
mContactsPreferences
= new ContactsPreferences(mContext);
320
mContactsPreferences
.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java
143
private ContactsPreferences
mContactsPreferences
;
297
mContactsPreferences
= new ContactsPreferences(mContext);
362
mContactsPreferences
.refreshValue(ContactsPreferences.DISPLAY_ORDER_KEY);
541
details.nameDisplayOrder =
mContactsPreferences
.getDisplayOrder();
611
if (
mContactsPreferences
.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_PRIMARY ||
[
all
...]
Completed in 459 milliseconds