OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:customLabel
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java
103
final String
customLabel
= cursor.getString(PHONE_LABEL_COLUMN_INDEX);
106
label = Phone.getTypeLabel(getContext().getResources(), type,
customLabel
);
LegacyPostalAddressListAdapter.java
105
final String
customLabel
= cursor.getString(POSTAL_LABEL_COLUMN_INDEX);
108
label = StructuredPostal.getTypeLabel(getContext().getResources(), type,
customLabel
);
EmailAddressListAdapter.java
146
final String
customLabel
= cursor.getString(EmailQuery.EMAIL_LABEL);
149
label = Email.getTypeLabel(getContext().getResources(), type,
customLabel
);
PostalAddressListAdapter.java
136
final String
customLabel
= cursor.getString(PostalQuery.POSTAL_LABEL);
139
label = StructuredPostal.getTypeLabel(getContext().getResources(), type,
customLabel
);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java
370
final String
customLabel
= cursor.getString(PhoneQuery.PHONE_LABEL);
373
label = Phone.getTypeLabel(getContext().getResources(), type,
customLabel
);
/cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java
526
String
customLabel
= "custom_label";
564
value.put(ContactMethods.LABEL,
customLabel
);
576
assertEquals(
customLabel
, cursor.getString(LABEL_INDEX));
[
all
...]
Completed in 69 milliseconds