Home
last modified time | relevance | path

Searched refs:entryValue (Results 1 – 9 of 9) sorted by relevance

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/
DRestrictedListPreference.java148 private RestrictedItem getRestrictedItemForEntryValue(CharSequence entryValue) { in getRestrictedItemForEntryValue() argument
149 if (entryValue == null) { in getRestrictedItemForEntryValue()
153 if (entryValue.equals(item.entryValue)) { in getRestrictedItemForEntryValue()
243 String entryValue = preference.getEntryValues()[which].toString(); in getOnItemClickListener() local
244 RestrictedItem item = preference.getRestrictedItemForEntryValue(entryValue); in getOnItemClickListener()
288 public final CharSequence entryValue;
291 public RestrictedItem(CharSequence entry, CharSequence entryValue,
294 this.entryValue = entryValue;
/packages/apps/Settings/src/com/android/settings/
DRestrictedListPreference.java148 private RestrictedItem getRestrictedItemForEntryValue(CharSequence entryValue) { in getRestrictedItemForEntryValue() argument
149 if (entryValue == null) { in getRestrictedItemForEntryValue()
153 if (entryValue.equals(item.entryValue)) { in getRestrictedItemForEntryValue()
243 String entryValue = preference.getEntryValues()[which].toString(); in getOnItemClickListener() local
244 RestrictedItem item = preference.getRestrictedItemForEntryValue(entryValue); in getOnItemClickListener()
288 public final CharSequence entryValue;
291 public RestrictedItem(CharSequence entry, CharSequence entryValue,
294 this.entryValue = entryValue;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DLimitedMultiSelectDialogFragment.java98 final String entryValue = (String) parent.getItemAtPosition(position); in onCreateDialog()
100 if (selectedValues.contains(entryValue)) { in onCreateDialog()
102 selectedValues.remove(entryValue); in onCreateDialog()
103 adapter.removeSelected(entryValue); in onCreateDialog()
106 selectedValues.add(entryValue); in onCreateDialog()
107 adapter.addSelected(entryValue); in onCreateDialog()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DLockScreenNotificationPreferenceController.java248 CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument
254 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
264 entry, entryValue, profileAdmin); in setRestrictedIfNotificationFeaturesDisabled()
DVisibilityPreferenceController.java130 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument
136 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
/packages/apps/Settings/src/com/android/settings/notification/
DLockScreenNotificationPreferenceController.java248 CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument
254 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
264 entry, entryValue, profileAdmin); in setRestrictedIfNotificationFeaturesDisabled()
DShowOnLockScreenNotificationPreferenceController.java135 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument
141 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
DVisibilityPreferenceController.java130 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument
136 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DComposeActivity.java2669 final Object entryValue = entry.getValue(); in callAccountSendSaveMethod() local
2671 if (entryValue instanceof String) { in callAccountSendSaveMethod()
2672 methodExtras.putString(key, (String)entryValue); in callAccountSendSaveMethod()
2673 } else if (entryValue instanceof Boolean) { in callAccountSendSaveMethod()
2674 methodExtras.putBoolean(key, (Boolean)entryValue); in callAccountSendSaveMethod()
2675 } else if (entryValue instanceof Integer) { in callAccountSendSaveMethod()
2676 methodExtras.putInt(key, (Integer)entryValue); in callAccountSendSaveMethod()
2677 } else if (entryValue instanceof Long) { in callAccountSendSaveMethod()
2678 methodExtras.putLong(key, (Long)entryValue); in callAccountSendSaveMethod()
2681 entryValue.getClass().getName()); in callAccountSendSaveMethod()