/external/skia/tests/ |
D | PathOpsThreeWayTest.cpp | 34 int testCount; member 44 int testCount = testSet.testCount; in testSetTest() local 45 SkASSERT(testCount > 1); in testSetTest() 47 for (int outer = 0; outer < testCount - 1; ++outer) { in testSetTest() 49 for (int inner = outer + 1; inner < testCount; ++inner) { in testSetTest()
|
D | PathOpsChalkboardTest.cpp | 104 int testCount; in chalkboard_threaded() local 110 testCount = 1; in chalkboard_threaded() 113 testCount = 64; in chalkboard_threaded() 116 testCount = reporter->allowExtendedTest() ? 63 * 62 / 2 : 100; in chalkboard_threaded() 119 testCount = reporter->allowExtendedTest() ? 10000 : 100; in chalkboard_threaded() 122 for (int test = 0; test < testCount; ++test) { in chalkboard_threaded() 181 static const size_t testCount = SK_ARRAY_COUNT(tests); variable 185 RunTestSet(reporter, tests, testCount, firstTest, skipTest, stopTest, runReverse); in DEF_TEST()
|
D | PathOpsInverseTest.cpp | 16 int testCount = 0; in DEF_TEST() local 29 testName.printf("inverseTest%d", ++testCount); in DEF_TEST()
|
D | skia_test.cpp | 68 int testCount) { in endTest() argument 70 fTestCount += testCount; in endTest() 87 int32_t testCount() { return fTestCount; } in testCount() function in Status 261 toRun, status.failCount(), skipCount, status.testCount()); in main()
|
D | LazyProxyTest.cpp | 241 int testCount = 0; variable 277 TestCallback(&testCount, releaseCallback, tex), format, {kSize, kSize}, 283 REPORTER_ASSERT(reporter, 0 == testCount); 290 REPORTER_ASSERT(reporter, -1 == testCount); 292 REPORTER_ASSERT(reporter, 1 == testCount); 295 REPORTER_ASSERT(reporter, -1 == testCount); 298 REPORTER_ASSERT(reporter, -1 == testCount);
|
/external/skqp/tests/ |
D | PathOpsThreeWayTest.cpp | 34 int testCount; member 44 int testCount = testSet.testCount; in testSetTest() local 45 SkASSERT(testCount > 1); in testSetTest() 47 for (int outer = 0; outer < testCount - 1; ++outer) { in testSetTest() 49 for (int inner = outer + 1; inner < testCount; ++inner) { in testSetTest()
|
D | PathOpsChalkboardTest.cpp | 105 int testCount; in chalkboard_threaded() local 111 testCount = 1; in chalkboard_threaded() 114 testCount = 64; in chalkboard_threaded() 117 testCount = reporter->allowExtendedTest() ? 63 * 62 / 2 : 100; in chalkboard_threaded() 120 testCount = reporter->allowExtendedTest() ? 10000 : 100; in chalkboard_threaded() 123 for (int test = 0; test < testCount; ++test) { in chalkboard_threaded() 181 static const size_t testCount = SK_ARRAY_COUNT(tests); variable 185 RunTestSet(reporter, tests, testCount, firstTest, skipTest, stopTest, runReverse); in DEF_TEST()
|
D | skia_test.cpp | 51 int testCount) { in endTest() argument 53 fTestCount += testCount; in endTest() 70 int32_t testCount() { return fTestCount; } in testCount() function in Status 244 toRun, status.failCount(), skipCount, status.testCount()); in main()
|
D | PathOpsInverseTest.cpp | 11 int testCount = 0; in DEF_TEST() local 27 testName.printf("inverseTest%d", ++testCount); in DEF_TEST()
|
D | LazyProxyTest.cpp | 251 int testCount = 0; variable 252 int* testCountPtr = &testCount; 266 REPORTER_ASSERT(reporter, 0 == testCount); 273 REPORTER_ASSERT(reporter, -1 == testCount); 275 REPORTER_ASSERT(reporter, 1 == testCount); 278 REPORTER_ASSERT(reporter, -1 == testCount); 281 REPORTER_ASSERT(reporter, -1 == testCount);
|
/external/skqp/gm/ |
D | rects.cpp | 238 static void position(SkCanvas* canvas, int testCount) { in position() argument 239 canvas->translate(SK_Scalar1 * 100 * (testCount % 10) + SK_Scalar1 / 4, in position() 240 SK_Scalar1 * 100 * (testCount / 10) + 3 * SK_Scalar1 / 4); in position() 246 int testCount = 0; in onDraw() local 249 for (int j = 0; j < fRects.count(); ++j, ++testCount) { in onDraw() 251 this->position(canvas, testCount); in onDraw() 262 for (int j = 0; j < fRects.count(); ++j, ++testCount) { in onDraw() 264 this->position(canvas, testCount); in onDraw()
|
D | ovals.cpp | 156 int testCount = 0; in onDraw() local 162 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) + in onDraw() 164 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) + in onDraw() 176 ++testCount; in onDraw()
|
D | roundrects.cpp | 159 int testCount = 0; in onDraw() local 165 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) + in onDraw() 167 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) + in onDraw() 179 ++testCount; in onDraw()
|
/external/angle/samples/stencil_operations/ |
D | StencilOperations.cpp | 95 static const size_t testCount = 4; in draw() local 96 GLfloat colors[testCount][4] = { in draw() 103 GLuint stencilValues[testCount] = { in draw() 193 for (size_t i = 0; i < testCount; ++i) in draw()
|
/external/junit/src/main/java/org/junit/runner/ |
D | Runner.java | 40 public int testCount() { in testCount() method in Runner 41 return getDescription().testCount(); in testCount()
|
/external/protobuf/conformance/ |
D | ConformanceJavaLite.java | 6 private int testCount = 0; field in ConformanceJavaLite 115 this.testCount++; in run() 119 this.testCount + " tests"); in run()
|
D | conformance_nodejs.js | 40 var testCount = 0; variable 175 testCount += 1 183 "after " + testCount + " tests, exiting")
|
/external/jsoncpp/src/test_lib_json/ |
D | jsontest.cpp | 224 size_t Runner::testCount() const { return tests_.size(); } in testCount() function in JsonTest::Runner 255 size_t const count = testCount(); in runAllTest() 285 const size_t count = testCount(); in testIndex() 296 const size_t count = testCount(); in listTests() 333 if (subrunner.testCount() > 0) { in runCommandLine() 334 succeeded = subrunner.runAllTest(subrunner.testCount() > 1); in runCommandLine()
|
/external/testng/src/main/java/org/testng/remote/strprotocol/ |
D | GenericMessage.java | 37 public void setTestCount(int testCount) { in setTestCount() argument 38 m_testCount = testCount; in setTestCount()
|
/external/skia/gm/ |
D | ovals.cpp | 163 int testCount = 0; in onDraw() local 169 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) + in onDraw() 171 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) + in onDraw() 183 ++testCount; in onDraw()
|
D | roundrects.cpp | 166 int testCount = 0; in onDraw() local 172 mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) + in onDraw() 174 kYStart + SK_Scalar1 * kYStep * (testCount / maxX) + in onDraw() 186 ++testCount; in onDraw()
|
/external/OpenCL-CTS/test_conformance/d3d10/ |
D | harness.cpp | 286 cl_int testCount; member 326 HarnessD3D10_testStats.testCount += 1; in HarnessD3D10_TestEnd() 335 …nt("PASSED %d of %d tests.\n", HarnessD3D10_testStats.passCount, HarnessD3D10_testStats.testCount); in HarnessD3D10_TestStats() 336 if (HarnessD3D10_testStats.testCount > HarnessD3D10_testStats.passCount) in HarnessD3D10_TestStats()
|
/external/junit/src/main/java/org/junit/internal/runners/ |
D | JUnit38ClassRunner.java | 111 int n = ts.testCount(); in makeDescription() 156 int n = suite.testCount(); in filter() 164 if (filtered.testCount() == 0) { in filter()
|
/external/vogar/src/vogar/target/junit/junit3/ |
D | TestSuiteTransformer.java | 70 int count = testSuite.testCount(); in transformSuite() 102 int count = testSuite.testCount(); in makeDescription()
|
/external/OpenCL-CTS/test_conformance/d3d11/ |
D | harness.cpp | 319 cl_int testCount; member 359 HarnessD3D11_testStats.testCount += 1; in HarnessD3D11_TestEnd() 368 …nt("PASSED %d of %d tests.\n", HarnessD3D11_testStats.passCount, HarnessD3D11_testStats.testCount); in HarnessD3D11_TestStats() 369 if (HarnessD3D11_testStats.testCount > HarnessD3D11_testStats.passCount) in HarnessD3D11_TestStats()
|