Searched refs:currentStep (Results 1 – 6 of 6) sorted by relevance
60 public void setTutorialProgress(int currentStep, int totalSteps) { in setTutorialProgress() argument61 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()
77 val currentStep: Flow<FingerprintNavigationStep> = in <lambda>() constant106 val currentStep = _currentStep.value in <lambda>() constant107 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>()
149 Command currentStep = mSteps.get(index); in startProcess() local150 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()
244 CacheStep currentStep = mSteps.elementAt(i); in process() local245 Bitmap bitmap = currentStep.cache; in process()246 currentStep.cache = null; in process()
236 final int currentStep = determineSetupStepNumber(); in onClick() local242 } else if (v == mStep1Bullet && currentStep == STEP_2) { in onClick()
238 navigationViewModel.currentStep.collect { step -> in <lambda>()