Searched refs:EXTRA_KEY_REQUESTED_MIN_COMPLEXITY (Results 1 – 7 of 7) sorted by relevance
33 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;165 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_HIGH); in updatePreferencesOrFinish_footerPreferenceAddedHighComplexityText()181 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_MEDIUM); in updatePreferencesOrFinish_footerPreferenceAddedMediumComplexityText()197 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_LOW); in updatePreferencesOrFinish_footerPreferenceAddedLowComplexityText()213 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE); in updatePreferencesOrFinish_footerPreferenceAddedNoneComplexityText()301 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_HIGH) in onPreferenceTreeClick_fingerprintPassesMinComplexityInfoOntoNextActivity()311 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isTrue(); in onPreferenceTreeClick_fingerprintPassesMinComplexityInfoOntoNextActivity()312 assertThat(actualIntent.getIntExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, in onPreferenceTreeClick_fingerprintPassesMinComplexityInfoOntoNextActivity()322 .putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_HIGH) in onPreferenceTreeClick_facePassesMinComplexityInfoOntoNextActivity()332 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isTrue(); in onPreferenceTreeClick_facePassesMinComplexityInfoOntoNextActivity()[all …]
29 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;161 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isTrue(); in testLaunchChooseLock_setNewPasswordExtraWithPermission()162 … assertThat(actualIntent.getIntExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE)) in testLaunchChooseLock_setNewPasswordExtraWithPermission()191 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isFalse(); in testLaunchChooseLock_setNewPasswordExtraInvalidValue()219 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isFalse(); in testLaunchChooseLock_setNewPasswordExtraNoneComplexity()246 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isFalse(); in testLaunchChooseLock_setNewPasswordWithoutExtra()274 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isFalse(); in testLaunchChooseLock_setNewParentProfilePasswordExtraWithPermission()301 assertThat(actualIntent.hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)).isFalse(); in testLaunchChooseLock_setNewParentProfilePasswordWithoutExtra()
22 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;60 intent.putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_HIGH); in setupChooseLockGenericPasswordComplexityExtraWithoutPermission()74 intent.putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_HIGH); in setupChooseLockGenericPasswordComplexityExtraWithPermission()
29 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;131 intent.putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, mRequestedMinComplexity); in launchChooseLock()
22 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;75 if(getIntent().hasExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY)) { in onCreate()
30 …t static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_REQUESTED_MIN_COMPLEXITY;242 EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE); in onCreate()444 chooseLockGenericIntent.putExtra(EXTRA_KEY_REQUESTED_MIN_COMPLEXITY, in onPreferenceTreeClick()
83 public static final String EXTRA_KEY_REQUESTED_MIN_COMPLEXITY = "requested_min_complexity"; field in ChooseLockSettingsHelper