Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DCacheProcessing.java33 private Vector<CacheStep> mSteps = new Vector<CacheStep>(); field in CacheProcessing
146 if (steps.size() != mSteps.size()) { in process()
147 mSteps = steps; in process()
151 displaySteps(mSteps); in process()
160 CacheStep cacheStep = mSteps.elementAt(i); in process()
167 mSteps.remove(i); in process()
168 mSteps.insertElementAt(newStep, i); in process()
181 && mSteps.elementAt(findBaseImageIndex).cache == null) { in process()
184 cacheBitmap = mSteps.elementAt(findBaseImageIndex).cache; in process()
189 + mSteps.size() + " cacheBitmap: " + cacheBitmap); in process()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DKalmanFilterTest.java94 private int mSteps = 500; field in KalmanFilterTest
105 double [] noise = new double[mSteps]; in testPhaseLockedLoop()
106 for (int i = 0; i < mSteps; i++) { in testPhaseLockedLoop()
109 double [] filtered = new double[mSteps]; in testPhaseLockedLoop()
110 double [] residual = new double[mSteps]; in testPhaseLockedLoop()
112 for (int i = 0; i < mSteps; i++) { in testPhaseLockedLoop()
121 for (int i = 0; i < mSteps; i++) { in testPhaseLockedLoop()
/packages/apps/ThemePicker/src/com/android/customization/picker/theme/
DCustomThemeActivity.java76 private List<ComponentStep<?>> mSteps; field in CustomThemeActivity
149 ComponentStep step = mSteps.get(i); in navigateToStep()
164 mSteps = new ArrayList<>(); in initSteps()
166 mSteps.add(new FontStep(new FontOptionsProvider(this, manager), 0)); in initSteps()
167 mSteps.add(new IconStep(new IconOptionsProvider(this, manager), 1)); in initSteps()
168 mSteps.add(new ColorStep(new ColorOptionsProvider(this, manager, mCustomThemeManager), 2)); in initSteps()
169 mSteps.add(new ShapeStep(new ShapeOptionsProvider(this, manager), 3)); in initSteps()
170 mSteps.add(new NameStep(4)); in initSteps()
260 mNextButton.setText((mCurrentStep < mSteps.size() -1) ? R.string.custom_theme_next in updateNavigationButtonLabels()
279 return mSteps.get(position).provider;
/packages/apps/Settings/src/com/android/settings/sim/smartForwarding/
DEnableSmartForwardingTask.java75 private final ArrayList<Command> mSteps = new ArrayList<>(); field in EnableSmartForwardingTask.FlowController
131 mSteps.add(slotUTData.getQueryCallWaitingCommand()); in initSteps()
136 mSteps.add(slotUTData.getQueryCallForwardingCommand()); in initSteps()
141 mSteps.add(slotUTData.getUpdateCallWaitingCommand()); in initSteps()
146 mSteps.add(slotUTData.getUpdateCallForwardingCommand()); in initSteps()
155 while (index < mSteps.size() && result) { in startProcess()
156 Command currentStep = mSteps.get(index); in startProcess()
186 List<Command> restoreCommands = mSteps.subList(0, index); in restoreAllSteps()
/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp621 CHECK_LT(stepIndex, mSteps.size()); in findModelOutputsThatAreDownstreamInputs()
628 mSteps[stepIndex]->executionStep()->declareModelOutputIsDownstreamInput( in findModelOutputsThatAreDownstreamInputs()
631 for (const auto& logicalStep : mSteps) { in findModelOutputsThatAreDownstreamInputs()
651 CHECK_LT(stepIndex, mSteps.size()); in findTempsAsStepModelOutputs()
652 mSteps[stepIndex]->executionStep()->recordTempAsStepModelOutput(sourceOperandIndex.second); in findTempsAsStepModelOutputs()
654 for (const auto& logicalStep : mSteps) { in findTempsAsStepModelOutputs()
894 for (const auto& logicalStep : mSteps) { in finish()
991 for (const auto& logicalStep : mSteps) { in findControlFlowBoundaryConstants()
1007 for (const auto& logicalStep : mSteps) { in findMemoryStepRoles()
1165 bursts.reserve(compound()->mSteps.size()); in makeBursts()
[all …]
DExecutionPlan.h710 size_t getNextStepIndex() const { return compound()->mSteps.size(); } in getNextStepIndex()
893 std::vector<std::shared_ptr<LogicalStep>> mSteps; member