OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:customLabel
(Results
1 - 11
of
11
) sorted by null
/packages/apps/TV/src/com/android/tv/ui/
InputBannerView.java
78
CharSequence
customLabel
= input.loadCustomLabel(getContext());
80
if (TextUtils.isEmpty(
customLabel
) ||
customLabel
.equals(label)) {
84
mInputLabelTextView.setText(
customLabel
);
SelectInputView.java
286
CharSequence
customLabel
= input.loadCustomLabel(getContext());
288
if (TextUtils.isEmpty(
customLabel
) ||
customLabel
.equals(label)) {
292
inputLabelView.setText(
customLabel
);
/packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java
106
final String
customLabel
= cursor.getString(PHONE_LABEL_COLUMN_INDEX);
109
label = Phone.getTypeLabel(getContext().getResources(), type,
customLabel
);
LegacyPostalAddressListAdapter.java
107
final String
customLabel
= cursor.getString(POSTAL_LABEL_COLUMN_INDEX);
110
label = StructuredPostal.getTypeLabel(getContext().getResources(), type,
customLabel
);
EmailAddressListAdapter.java
148
final String
customLabel
= cursor.getString(EmailQuery.EMAIL_LABEL);
151
label = Email.getTypeLabel(getContext().getResources(), type,
customLabel
);
PostalAddressListAdapter.java
139
final String
customLabel
= cursor.getString(PostalQuery.POSTAL_LABEL);
142
label = StructuredPostal.getTypeLabel(getContext().getResources(), type,
customLabel
);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
InputOptionsFragment.java
99
final CharSequence
customLabel
= mCustomLabels.get(mInputInfo.getId());
109
final boolean nameMatch = TextUtils.equals(namePref.getTitle(),
customLabel
);
116
final boolean nameIsDefault = TextUtils.isEmpty(
customLabel
);
120
nameIsDefault ? defaultLabel :
customLabel
);
124
mNameCustomPref.setSummary(
customLabel
);
InputsFragment.java
198
String
customLabel
;
200
customLabel
= getString(R.string.inputs_hide);
202
customLabel
= mCustomLabels.get(inputInfo.getId());
203
if (TextUtils.isEmpty(
customLabel
)) {
204
customLabel
= inputInfo.loadLabel(getContext()).toString();
207
setSummary(
customLabel
);
/packages/apps/TV/src/com/android/tv/search/
TvProviderSearch.java
434
String
customLabel
= canonicalizeLabel(input.loadCustomLabel(mContext));
435
if (TextUtils.equals(query, label) || TextUtils.equals(query,
customLabel
)) {
446
String
customLabel
= canonicalizeLabel(input.loadCustomLabel(mContext));
448
(
customLabel
!= null &&
customLabel
.contains(query))) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java
471
final String
customLabel
= cursor.getString(PhoneQuery.PHONE_LABEL);
474
label = Phone.getTypeLabel(getContext().getResources(), type,
customLabel
);
/packages/apps/TV/src/com/android/tv/util/
Utils.java
493
CharSequence
customLabel
= input.loadCustomLabel(context);
494
String label = (
customLabel
== null) ? null :
customLabel
.toString();
Completed in 784 milliseconds