Searched refs:EXTRA_KEY_MIN_COMPLEXITY (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Settings/tests/robotests/src/com/android/settings/password/ |
D | ChooseLockGenericTest.java | 402 assertThat(intent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsReadFromDPM() 422 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsMergedWithDPM() 444 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsMergedWithDPM_AppIsHigher() 458 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_PasswordComplexityPassedOn() 479 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_PasswordQualityPassedOn() 497 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_ComplexityAndQualityPassedOn()
|
D | ChooseLockPasswordTest.java | 137 assertThat(intent.hasExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY)).isTrue(); in intentBuilder_setMinComplexityMedium_hasMinComplexityExtraMedium() 139 ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE)) in intentBuilder_setMinComplexityMedium_hasMinComplexityExtraMedium() 147 assertThat(intent.hasExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY)).isFalse(); in intentBuilder_setMinComplexityNotCalled() 476 intent.putExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, minComplexity); in createIntentForPasswordValidation()
|
/packages/apps/Settings/src/com/android/settings/password/ |
D | ChooseLockPassword.java | 101 static final String EXTRA_KEY_MIN_COMPLEXITY = "min_complexity"; field in ChooseLockPassword 165 mIntent.putExtra(EXTRA_KEY_MIN_COMPLEXITY, level); in setPasswordRequirement() 442 mMinComplexity = intent.getIntExtra(EXTRA_KEY_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE); in onCreate()
|