/packages/apps/Settings/src/com/android/settings/password/ |
ScreenLockType.java | 65 public final String preferenceKey; 67 ScreenLockType(int quality, String preferenceKey) { 68 this(quality, quality, preferenceKey); 71 ScreenLockType(int defaultQuality, int maxQuality, String preferenceKey) { 74 this.preferenceKey = preferenceKey; 104 if (lock.preferenceKey.equals(key)) {
|
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/ |
SipEditor.java | 105 enum PreferenceKey { 128 PreferenceKey(int text, int initValue, int defaultSummary) { 328 private boolean isEditTextEmpty(PreferenceKey key) { 337 for (PreferenceKey key : PreferenceKey.values()) { 362 } else if (key == PreferenceKey.Port) { 365 port = Integer.parseInt(PreferenceKey.Port.getValue()); 424 return PreferenceKey.Username.getValue() + "@" 425 + PreferenceKey.DomainAddress.getValue(); 430 PreferenceKey.Username.getValue() [all...] |
/packages/apps/Settings/tests/robotests/src/com/android/settings/core/ |
BadPreferenceController.java | 23 public BadPreferenceController(Context context, String preferenceKey) { 24 super(context, preferenceKey);
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/ |
FakePreferenceController.java | 25 public FakePreferenceController(Context context, String preferenceKey) { 26 super(context, preferenceKey);
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/timezone/ |
BaseTimeZonePreferenceControllerTest.java | 71 public TestPreferenceController(Context context, String preferenceKey) { 72 super(context, preferenceKey); 74 mTestPreference.setKey(preferenceKey); 79 public TestPreference(Context context, String preferenceKey) { 81 setKey(preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothDeviceRenamePreferenceController.java | 39 public BluetoothDeviceRenamePreferenceController(Context context, String preferenceKey) { 40 super(context, preferenceKey); 46 String preferenceKey) { 47 super(context, localAdapter, preferenceKey);
|
BluetoothDeviceNamePreferenceController.java | 54 public BluetoothDeviceNamePreferenceController(Context context, String preferenceKey) { 55 super(context, preferenceKey); 67 String preferenceKey) { 68 super(context, preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/datetime/timezone/ |
BaseTimeZonePreferenceController.java | 29 protected BaseTimeZonePreferenceController(Context context, String preferenceKey) { 30 super(context, preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/development/ |
DefaultLaunchPreferenceController.java | 35 public DefaultLaunchPreferenceController(Context context, String preferenceKey) { 38 mPreferenceKey = preferenceKey;
|
/packages/apps/Settings/src/com/android/settings/system/ |
ResetPreferenceController.java | 25 public ResetPreferenceController(Context context, String preferenceKey) { 26 super(context, preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/wifi/tether/ |
WifiTetherAutoOffPreferenceController.java | 29 public WifiTetherAutoOffPreferenceController(Context context, String preferenceKey) { 30 super(context, preferenceKey);
|
/developers/build/prebuilts/gradle/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ |
ComplicationToggleReceiver.java | 40 String preferenceKey = getPreferenceKey(provider, complicationId); 42 int value = pref.getInt(preferenceKey, 0); 44 editor.putInt(preferenceKey, value + 1); // Increase value by 1
|
/developers/samples/android/wearable/wear/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ |
ComplicationToggleReceiver.java | 40 String preferenceKey = getPreferenceKey(provider, complicationId); 42 int value = pref.getInt(preferenceKey, 0); 44 editor.putInt(preferenceKey, value + 1); // Increase value by 1
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
AccessibilitySlicePreferenceController.java | 45 public AccessibilitySlicePreferenceController(Context context, String preferenceKey) { 46 super(context, preferenceKey); 51 "Illegal Component Name from: " + preferenceKey);
|
/packages/apps/EmergencyInfo/src/com/android/emergency/edit/ |
EditMedicalInfoFragment.java | 44 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);
|
EditInfoFragment.java | 58 for (String preferenceKey : PreferenceKeys.KEYS_EDIT_EMERGENCY_INFO) { 59 Preference preference = findPreference(preferenceKey); 60 mMedicalInfoPreferences.put(preferenceKey, preference);
|
/packages/apps/EmergencyInfo/src/com/android/emergency/view/ |
ViewEmergencyInfoFragment.java | 42 for (String preferenceKey : PreferenceKeys.KEYS_VIEW_EMERGENCY_INFO) { 43 Preference preference = findPreference(preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/applications/appinfo/ |
AppSettingPreferenceController.java | 33 public AppSettingPreferenceController(Context context, String preferenceKey) { 34 super(context, preferenceKey);
|
AppInfoPreferenceControllerBase.java | 40 public AppInfoPreferenceControllerBase(Context context, String preferenceKey) { 41 super(context, preferenceKey);
|
DefaultAppShortcutPreferenceControllerBase.java | 38 public DefaultAppShortcutPreferenceControllerBase(Context context, String preferenceKey, 40 super(context, preferenceKey);
|
/packages/apps/Settings/src/com/android/settings/core/ |
SliderPreferenceController.java | 25 public SliderPreferenceController(Context context, String preferenceKey) { 26 super(context, preferenceKey);
|
TogglePreferenceController.java | 33 public TogglePreferenceController(Context context, String preferenceKey) { 34 super(context, preferenceKey);
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/ |
FakeToggleController.java | 41 public FakeToggleController(Context context, String preferenceKey) { 42 super(context, preferenceKey);
|
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/ |
ComplicationToggleReceiver.java | 49 String preferenceKey = getPreferenceKey(provider, complicationId); 53 int value = sharedPreferences.getInt(preferenceKey, 0); 59 editor.putInt(preferenceKey, value);
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/ |
ComplicationToggleReceiver.java | 49 String preferenceKey = getPreferenceKey(provider, complicationId); 53 int value = sharedPreferences.getInt(preferenceKey, 0); 59 editor.putInt(preferenceKey, value);
|