HomeSort by relevance Sort by last modified time
    Searched refs:numTests (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /cts/common/util/src/com/android/compatibility/common/util/
IModuleResult.java 43 void setNotExecuted(int numTests);
InvocationResult.java 68 int numTests = 0;
70 numTests += module.getNotExecuted();
72 return numTests;
ModuleResult.java 80 public void setNotExecuted(int numTests) {
81 mNotExecuted = numTests;
  /frameworks/base/tests/CoreTests/android/core/
Sha1Test.java 47 int numTests = mTestData.length;
48 for (int i = 0; i < numTests; i++) {
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
ConsoleReporter.java 69 public void testRunStarted(String id, int numTests) {
72 mTotalTestsInModule = numTests;
83 mTotalTestsInModule += numTests;
85 mTotalTestsInModule += Math.max(0, numTests - mNotExecutedTests);
ModuleListener.java 61 public void testRunStarted(String name, int numTests) {
62 CLog.d("ModuleListener.testRunStarted(%s, %d)", name, numTests);
63 mListener.testRunStarted(mModule.getId(), numTests);
ResultReporter.java 242 public void testRunStarted(String id, int numTests) {
250 mTotalTestsInModule += numTests;
254 Math.max(0, numTests - mCurrentModuleResult.getNotExecuted());
259 mTotalTestsInModule = numTests;
  /external/compiler-rt/test/builtins/Unit/ppc/
floatditf_test.c 15 for (i=0; i<numTests; ++i) {
floatunditf_test.c 15 for (i=0; i<numTests; ++i) {
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UnitTest.java 34 private static int numTests = 0;
44 testID = numTests++;
  /external/clang/utils/
token-delta.py 146 self.numTests = 0
163 self.numTests += 1
229 tbmd.numTests)
  /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
AnimatedVectorDrawableTest.java 194 final int numTests = 5;
198 CountDownLatch latch = new CountDownLatch(numTests);
211 for (int i = 0; i < numTests; ++i) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 435 Matcher numTests = numTestsPattern.matcher(identifier);
438 if (numTests.find()) {
440 mNumTestsExpected = Integer.parseInt(numTests.group(1));
444 numTests.group(1));
  /external/llvm/utils/lit/lit/
main.py 20 def __init__(self, opts, numTests, progressBar=None):
22 self.numTests = numTests
42 self.progressBar.update(float(self.completed)/self.numTests,
57 self.completed, self.numTests))
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
CtsTestLogReporter.java 60 * @param numTests total number of tests in test run
63 public void testRunStarted(String id, int numTests) {
IssueReporter.java 209 public void testRunStarted(String id, int numTests) {
  /external/deqp/scripts/
mustpass.py 288 numTests = 0
292 numTests += 1
296 assert numGroups + numTests > 0
298 if numGroups > 0 and numTests > 0:
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 240 private static final String REPORT_KEY_NUM_TOTAL = "numtests";
262 public WatcherResultPrinter(int numTests) {
265 mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, numTests);
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 227 public static final String REPORT_KEY_NUM_TOTAL = "numtests";
756 public WatcherResultPrinter(int numTests) {
759 mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, numTests);
    [all...]
TestRunner.java 659 int numTests = countJunitTests(clazz);
660 if (numTests > 0)

Completed in 603 milliseconds

1 2 3 4 5