Home
last modified time | relevance | path

Searched refs:numOps (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/app/
DBackStackRecord.java49 final int numOps = bse.mOps.size(); in BackStackState() local
50 mOps = new int[numOps * 6]; in BackStackState()
57 for (int opNum = 0; opNum < numOps; opNum++) { in BackStackState()
302 final int numOps = mOps.size(); in dump() local
303 for (int opNum = 0; opNum < numOps; opNum++) { in dump()
610 final int numOps = mOps.size(); in bumpBackStackNesting() local
611 for (int opNum = 0; opNum < numOps; opNum++) { in bumpBackStackNesting()
716 final int numOps = mOps.size(); in interactsWith() local
717 for (int opNum = 0; opNum < numOps; opNum++) { in interactsWith()
731 final int numOps = mOps.size(); in interactsWith() local
[all …]
DFragmentTransition.java1205 final int numOps = transaction.mOps.size(); in calculateFragments() local
1206 for (int opNum = 0; opNum < numOps; opNum++) { in calculateFragments()
1225 final int numOps = transaction.mOps.size(); in calculatePopFragments() local
1226 for (int opNum = numOps - 1; opNum >= 0; opNum--) { in calculatePopFragments()
/frameworks/base/services/tests/servicestests/src/com/android/server/appop/
DAppOpsActiveWatcherTest.java139 final int numOps = opEntries.size(); in isCameraOn() local
140 for (int opInd = 0; opInd < numOps; opInd++) { in isCameraOn()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DLocationControllerImpl.java163 final int numOps = opEntries.size(); in areActiveHighPowerLocationRequests() local
164 for (int opInd = 0; opInd < numOps; opInd++) { in areActiveHighPowerLocationRequests()
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
DSoundTriggerService.java866 NumOps numOps = mNumOpsPerPackage.get(mServiceName.getPackageName()); in RemoteSoundTriggerDetectionService() local
867 if (numOps == null) { in RemoteSoundTriggerDetectionService()
868 numOps = new NumOps(); in RemoteSoundTriggerDetectionService()
869 mNumOpsPerPackage.put(mServiceName.getPackageName(), numOps); in RemoteSoundTriggerDetectionService() local
871 mNumOps = numOps; in RemoteSoundTriggerDetectionService()
964 int numOps = mRunningOpIds.size(); in stopAllPendingOperations() local
965 for (int i = 0; i < numOps; i++) { in stopAllPendingOperations()
/frameworks/base/packages/SystemUI/src/com/android/systemui/appops/
DAppOpsControllerImpl.java84 final int numOps = OPS.length; in AppOpsControllerImpl() local
85 for (int i = 0; i < numOps; i++) { in AppOpsControllerImpl()
/frameworks/ml/nn/runtime/test/fuzzing/
DTestRandomGraph.cpp281 void computeAndVerifyResultsForDevice(const test_wrapper::Model* model, uint32_t numOps, in computeAndVerifyResultsForDevice() argument
290 ASSERT_TRUE(numOps <= kMaxNumberOperations); in computeAndVerifyResultsForDevice()
295 if (!std::all_of(supported, supported + numOps, [](bool v) { return v; })) { in computeAndVerifyResultsForDevice()