Home
last modified time | relevance | path

Searched refs:currentStep (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DTutorialStepIndicator.java60 public void setTutorialProgress(int currentStep, int totalSteps) { in setTutorialProgress() argument
61 if (currentStep <= 0) { in setTutorialProgress()
62 Log.w(LOG_TAG, "Current step number invalid: " + currentStep + ". Assuming step 1."); in setTutorialProgress()
63 currentStep = 1; in setTutorialProgress()
69 if (currentStep > totalSteps) { in setTutorialProgress()
72 currentStep = totalSteps; in setTutorialProgress()
79 mCurrentStep = currentStep; in setTutorialProgress()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/ui/enrollment/viewmodel/
DFingerprintNavigationViewModel.kt77 val currentStep: Flow<FingerprintNavigationStep> = in <lambda>() constant
106 val currentStep = _currentStep.value in <lambda>() constant
107 val isUiStep = currentStep is UiStep && caller is UiStep in <lambda>()
108 if (currentStep == null) { in <lambda>()
111 if (isUiStep && currentStep::class != caller) { in <lambda>()
113 "Error $currentStep != $caller, $caller should not be sending any events at this time" in <lambda>()
120 val nextStep = currentStep.update(navState, action) ?: return in <lambda>()
/packages/apps/Settings/src/com/android/settings/sim/smartForwarding/
DEnableSmartForwardingTask.java149 Command currentStep = mSteps.get(index); in startProcess() local
150 Log.d(TAG, "processing : " + currentStep); in startProcess()
153 result = currentStep.process(); in startProcess()
155 Log.d(TAG, "Failed on : " + currentStep, e); in startProcess()
162 Log.d(TAG, "Failed on : " + currentStep); in startProcess()
181 for (Command currentStep : restoreCommands) { in restoreAllSteps()
182 Log.d(TAG, "restoreStep: " + currentStep); in restoreAllSteps()
184 if (currentStep instanceof UpdateCommand) { in restoreAllSteps()
185 ((UpdateCommand) currentStep).onRestore(); in restoreAllSteps()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DCacheProcessing.java244 CacheStep currentStep = mSteps.elementAt(i); in process() local
245 Bitmap bitmap = currentStep.cache; in process()
246 currentStep.cache = null; in process()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
DSetupWizardActivity.java236 final int currentStep = determineSetupStepNumber(); in onClick() local
242 } else if (v == mStep1Bullet && currentStep == STEP_2) { in onClick()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/ui/enrollment/activity/
DFingerprintEnrollmentV2Activity.kt238 navigationViewModel.currentStep.collect { step -> in <lambda>()