Home
last modified time | relevance | path

Searched refs:numIterations (Results 1 – 11 of 11) sorted by relevance

/aosp12/frameworks/base/tests/BootImageProfileTest/src/com/android/bootimageprofile/
H A DBootImageProfileTest.java86 final int numIterations = 30; in testSystemServerProfile() local
89 for (int i = 1; i <= numIterations; ++i) { in testSystemServerProfile()
97 if (i == numIterations) { in testSystemServerProfile()
112 for (int i = 1; i <= numIterations; ++i) { in testSystemServerProfile()
120 if (i == numIterations) { in testSystemServerProfile()
132 for (int i = 1; i <= numIterations; ++i) { in testSystemServerProfile()
164 if (i == numIterations) { in testSystemServerProfile()
187 if (i == numIterations) { in testSystemServerProfile()
/aosp12/build/soong/finder/cmd/
H A Dfinder.go44 numIterations int var
60 flag.IntVar(&numIterations, "count", 1,
132 for i := 0; i < numIterations; i++ {
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/crypto/
H A DFips186_2Prf.java59 int numIterations = (outputLenBytes + SHA_OUTPUT_LEN_BYTES - 1) / SHA_OUTPUT_LEN_BYTES; in getRandom() local
60 for (int j = 0; j < numIterations; j++) { in getRandom()
/aosp12/frameworks/base/core/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java85 @RepetitiveTest(numIterations = NUM_ITERATIONS)
94 @RepetitiveTest(numIterations = NUM_ITERATIONS_2)
/aosp12/frameworks/base/test-base/src/android/test/
H A DRepetitiveTest.java41 int numIterations() default 1; in numIterations() method
H A DInstrumentationTestCase.java183 runCount = method.getAnnotation(RepetitiveTest.class).numIterations(); in runTest()
/aosp12/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java298 int numIterations = testMethod.getAnnotation(RepetitiveTest.class) in startTest() local
299 .numIterations(); in startTest()
300 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations); in startTest()
/aosp12/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java180 int numIterations = 0; in binaryAlphaSearch() local
184 while (numIterations <= MIN_ALPHA_SEARCH_MAX_ITERATIONS && in binaryAlphaSearch()
196 numIterations++; in binaryAlphaSearch()
/aosp12/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java787 int numIterations = testMethod.getAnnotation( in startTest() local
788 RepetitiveTest.class).numIterations(); in startTest()
789 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations); in startTest()
/aosp12/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java68 runCount = method.getAnnotation(RepetitiveTest.class).numIterations(); in runTest()
/aosp12/frameworks/base/test-base/api/
H A Dcurrent.txt56 method @Deprecated public abstract int numIterations() default 1;