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.java61 public void setTutorialProgress(int currentStep, int totalSteps) { in setTutorialProgress() argument
62 if (currentStep <= 0) { in setTutorialProgress()
63 Log.w(LOG_TAG, "Current step number invalid: " + currentStep + ". Assuming step 1."); in setTutorialProgress()
64 currentStep = 1; in setTutorialProgress()
70 if (currentStep > totalSteps) { in setTutorialProgress()
73 currentStep = totalSteps; in setTutorialProgress()
80 mCurrentStep = currentStep; in setTutorialProgress()
DGestureSandboxActivity.java153 int currentStep = extras.getInt(KEY_CURRENT_STEP, -1); in getTutorialSteps() local
174 mCurrentStep = Math.max(currentStep, 1); in getTutorialSteps()
/packages/apps/Settings/src/com/android/settings/sim/smartForwarding/
DEnableSmartForwardingTask.java156 Command currentStep = mSteps.get(index); in startProcess() local
157 Log.d(TAG, "processing : " + currentStep); in startProcess()
160 result = currentStep.process(); in startProcess()
162 Log.d(TAG, "Failed on : " + currentStep, e); in startProcess()
169 Log.d(TAG, "Failed on : " + currentStep); in startProcess()
188 for (Command currentStep : restoreCommands) { in restoreAllSteps()
189 Log.d(TAG, "restoreStep: " + currentStep); in restoreAllSteps()
191 if (currentStep instanceof UpdateCommand) { in restoreAllSteps()
192 ((UpdateCommand) currentStep).onRestore(); in restoreAllSteps()
/packages/apps/ThemePicker/src/com/android/customization/picker/theme/
DCustomThemeActivity.java117 int currentStep = 0; in onCreate() local
119 currentStep = savedInstanceState.getInt(KEY_STATE_CURRENT_STEP); in onCreate()
121 initSteps(currentStep); in onCreate()
163 private void initSteps(int currentStep) { in initSteps() argument
171 mCurrentStep = currentStep; in initSteps()
/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()