OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mUiStage
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Car/Settings/src/com/android/car/settings/security/
ChooseLockPatternFragment.java
56
private Stage
mUiStage
= Stage.Introduction;
278
updateStage(
mUiStage
);
301
mUiStage
= stage;
335
switch (
mUiStage
) {
379
switch(
mUiStage
) {
389
throw new IllegalStateException("Unexpected stage " +
mUiStage
468
switch(
mUiStage
.mPrimaryButtonState) {
470
if (
mUiStage
!= Stage.FirstChoiceValid) {
478
if (
mUiStage
!= Stage.ChoiceConfirmed) {
485
if (
mUiStage
!= Stage.SaveFailure)
[
all
...]
ChooseLockPinPasswordFragment.java
57
private Stage
mUiStage
= Stage.Introduction;
228
if (
mUiStage
== Stage.ConfirmWrong) {
229
mUiStage
= Stage.NeedToConfirm;
230
} else if (
mUiStage
== Stage.PasswordInvalid) {
231
mUiStage
= Stage.Introduction;
287
updateStage(
mUiStage
);
374
switch(
mUiStage
) {
411
if (
mUiStage
.secondaryButtonText == R.string.lockpassword_clear_label) {
413
mUiStage
= Stage.Introduction;
414
if (mIsInSetupWizard &&
mUiStage
.secondaryButtonTex
[
all
...]
/packages/apps/Settings/src/com/android/settings/password/
ChooseLockPassword.java
206
protected Stage
mUiStage
= Stage.Introduction;
435
mUiStage
= Stage.valueOf(state);
436
updateStage(
mUiStage
);
518
updateStage(
mUiStage
);
538
outState.putString(KEY_UI_STAGE,
mUiStage
.name());
565
final Stage previousStage =
mUiStage
;
566
mUiStage
= stage;
[
all
...]
ChooseLockPattern.java
245
if (
mUiStage
== Stage.NeedToConfirm ||
mUiStage
== Stage.ConfirmWrong) {
253
} else if (
mUiStage
== Stage.Introduction ||
mUiStage
== Stage.ChoiceTooShort){
261
throw new IllegalStateException("Unexpected stage " +
mUiStage
+ " when "
411
private Stage
mUiStage
= Stage.Introduction;
552
updateStage(
mUiStage
);
573
if (
mUiStage
.leftMode == LeftButtonMode.Retry) {
579
mUiStage
+ " doesn't make sense");
584
if (
mUiStage
.rightMode == RightButtonMode.Continue)
[
all
...]
Completed in 89 milliseconds