OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:customLabel
(Results
1 - 8
of
8
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
ContactDisplayUtils.java
51
* @param
customLabel
A custom label to use if the phone is determined to be of custom type
58
public static CharSequence getLabelForCallOrSms(Integer type, CharSequence
customLabel
,
63
return (
customLabel
== null) ? "" :
customLabel
;
/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
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java
[
all
...]
/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 106 milliseconds