Searched refs:preferenceKey (Results 1 - 25 of 51) sorted by path

123

/packages/apps/EmergencyInfo/src/com/android/emergency/edit/
H A DEditInfoFragment.java58 for (String preferenceKey : PreferenceKeys.KEYS_EDIT_EMERGENCY_INFO) {
59 Preference preference = findPreference(preferenceKey);
60 mMedicalInfoPreferences.put(preferenceKey, preference);
H A DEditMedicalInfoFragment.java44 String preferenceKey = PreferenceKeys.KEYS_EDIT_EMERGENCY_INFO[i];
46 Preference preference = findPreference(preferenceKey);
98 for (String preferenceKey : PreferenceKeys.KEYS_EDIT_EMERGENCY_INFO) {
100 findPreference(preferenceKey);
/packages/apps/EmergencyInfo/src/com/android/emergency/view/
H A DViewEmergencyInfoFragment.java42 for (String preferenceKey : PreferenceKeys.KEYS_VIEW_EMERGENCY_INFO) {
43 Preference preference = findPreference(preferenceKey);
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/
H A DAppPermissionsFragmentWear.java405 private void setPreferenceCheckedIfPresent(String preferenceKey, boolean checked) { argument
406 Preference pref = findPreference(preferenceKey);
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java132 * @param preferenceKey The key of the preference whose intent is being
141 PreferenceGroup parentPreferenceGroup, String preferenceKey, int flags) {
143 Preference preference = parentPreferenceGroup.findPreference(preferenceKey);
140 updatePreferenceToSpecificActivityOrRemove(Context context, PreferenceGroup parentPreferenceGroup, String preferenceKey, int flags) argument
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DAccessibilityShortcutPreferenceFragment.java123 protected void onPreferenceToggled(String preferenceKey, boolean enabled) { argument
124 Settings.Secure.putInt(getContentResolver(), preferenceKey, enabled ? 1 : 0);
H A DAccessibilitySlicePreferenceController.java45 public AccessibilitySlicePreferenceController(Context context, String preferenceKey) { argument
46 super(context, preferenceKey);
51 "Illegal Component Name from: " + preferenceKey);
H A DToggleAccessibilityServicePreferenceFragment.java105 public void onPreferenceToggled(String preferenceKey, boolean enabled) { argument
106 ComponentName toggledService = ComponentName.unflattenFromString(preferenceKey);
H A DToggleAutoclickPreferenceFragment.java95 protected void onPreferenceToggled(String preferenceKey, boolean enabled) { argument
96 Settings.Secure.putInt(getContentResolver(), preferenceKey, enabled ? 1 : 0);
H A DToggleDaltonizerPreferenceFragment.java67 protected void onPreferenceToggled(String preferenceKey, boolean enabled) { argument
H A DToggleFeaturePreferenceFragment.java94 protected abstract void onPreferenceToggled(String preferenceKey, boolean enabled); argument
H A DToggleScreenMagnificationPreferenceFragment.java175 protected void onPreferenceToggled(String preferenceKey, boolean enabled) { argument
176 MagnificationPreferenceFragment.setChecked(getContentResolver(), preferenceKey, enabled);
/packages/apps/Settings/src/com/android/settings/applications/appinfo/
H A DAppInfoPreferenceControllerBase.java40 public AppInfoPreferenceControllerBase(Context context, String preferenceKey) { argument
41 super(context, preferenceKey);
H A DAppSettingPreferenceController.java33 public AppSettingPreferenceController(Context context, String preferenceKey) { argument
34 super(context, preferenceKey);
H A DDefaultAppShortcutPreferenceControllerBase.java38 public DefaultAppShortcutPreferenceControllerBase(Context context, String preferenceKey, argument
40 super(context, preferenceKey);
H A DTimeSpentInAppPreferenceController.java44 public TimeSpentInAppPreferenceController(Context context, String preferenceKey) { argument
45 super(context, preferenceKey);
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDeviceNamePreferenceController.java54 public BluetoothDeviceNamePreferenceController(Context context, String preferenceKey) { argument
55 super(context, preferenceKey);
67 String preferenceKey) {
68 super(context, preferenceKey);
66 BluetoothDeviceNamePreferenceController(Context context, LocalBluetoothAdapter localAdapter, String preferenceKey) argument
H A DBluetoothDeviceRenamePreferenceController.java39 public BluetoothDeviceRenamePreferenceController(Context context, String preferenceKey) { argument
40 super(context, preferenceKey);
46 String preferenceKey) {
47 super(context, localAdapter, preferenceKey);
45 BluetoothDeviceRenamePreferenceController(Context context, LocalBluetoothAdapter localAdapter, String preferenceKey) argument
/packages/apps/Settings/src/com/android/settings/connecteddevice/
H A DAdvancedConnectedDeviceController.java33 public AdvancedConnectedDeviceController(Context context, String preferenceKey) { argument
34 super(context, preferenceKey);
H A DPreviouslyConnectedDevicePreferenceController.java42 public PreviouslyConnectedDevicePreferenceController(Context context, String preferenceKey) { argument
43 super(context, preferenceKey);
/packages/apps/Settings/src/com/android/settings/core/
H A DBasePreferenceController.java145 public BasePreferenceController(Context context, String preferenceKey) { argument
147 mPreferenceKey = preferenceKey;
H A DSliderPreferenceController.java25 public SliderPreferenceController(Context context, String preferenceKey) { argument
26 super(context, preferenceKey);
H A DTogglePreferenceController.java33 public TogglePreferenceController(Context context, String preferenceKey) { argument
34 super(context, preferenceKey);
/packages/apps/Settings/src/com/android/settings/datetime/timezone/
H A DBaseTimeZonePreferenceController.java29 protected BaseTimeZonePreferenceController(Context context, String preferenceKey) { argument
30 super(context, preferenceKey);
/packages/apps/Settings/src/com/android/settings/development/
H A DDefaultLaunchPreferenceController.java35 public DefaultLaunchPreferenceController(Context context, String preferenceKey) { argument
38 mPreferenceKey = preferenceKey;

Completed in 1763 milliseconds

123