/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/ |
D | RestrictedListPreference.java | 148 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/ |
D | RestrictedListPreference.java | 148 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/ |
D | LimitedMultiSelectDialogFragment.java | 98 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/ |
D | LockScreenNotificationPreferenceController.java | 248 CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 254 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled() 264 entry, entryValue, profileAdmin); in setRestrictedIfNotificationFeaturesDisabled()
|
D | VisibilityPreferenceController.java | 130 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/ |
D | LockScreenNotificationPreferenceController.java | 248 CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 254 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled() 264 entry, entryValue, profileAdmin); in setRestrictedIfNotificationFeaturesDisabled()
|
D | ShowOnLockScreenNotificationPreferenceController.java | 135 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 141 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
|
D | VisibilityPreferenceController.java | 130 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/ |
D | ComposeActivity.java | 2669 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()
|