Home
last modified time | relevance | path

Searched refs:EXTRA_KEY_MIN_COMPLEXITY (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/password/
DChooseLockGenericTest.java498 assertThat(intent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsReadFromDPM()
518 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsMergedWithDPM()
540 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in updatePreferencesOrFinish_ComplexityIsMergedWithDPM_AppIsHigher()
554 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_PasswordComplexityPassedOn()
575 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_PasswordQualityPassedOn()
593 assertThat(passwordIntent.getIntExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, in getLockPasswordIntent_DevicePasswordRequirementOnly_ComplexityAndQualityPassedOn()
DChooseLockPasswordTest.java137 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()
575 intent.putExtra(ChooseLockPassword.EXTRA_KEY_MIN_COMPLEXITY, minComplexity); in createIntentForPasswordValidation()
/packages/apps/Settings/src/com/android/settings/password/
DChooseLockPassword.java114 static final String EXTRA_KEY_MIN_COMPLEXITY = "min_complexity"; field in ChooseLockPassword
177 mIntent.putExtra(EXTRA_KEY_MIN_COMPLEXITY, level); in setPasswordRequirement()
497 mMinComplexity = intent.getIntExtra(EXTRA_KEY_MIN_COMPLEXITY, PASSWORD_COMPLEXITY_NONE); in onCreate()