Searched defs:isRepetitive (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java64 boolean isRepetitive = false;
69 isRepetitive = true;
74 final boolean repetitive = isRepetitive;
112 runMethod(method, runCount, isRepetitive);
116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { argument
134 if (isRepetitive) {
140 } while ((runCount < tolerance) && (isRepetitive || exception != null));
/frameworks/base/core/java/android/test/
H A DInstrumentationTestCase.java179 boolean isRepetitive = false;
184 isRepetitive = true;
189 final boolean repetitive = isRepetitive;
205 runMethod(method, runCount, isRepetitive);
209 // For backwards-compatibility after adding isRepetitive
214 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { argument
231 if (isRepetitive) {
237 } while ((runCount < tolerance) && (isRepetitive || exception != null));

Completed in 108 milliseconds