/external/swiftshader/tests/regres/deqp/ |
D | deqp.go | 317 testNames := []string{} 319 testNames = append(testNames, name) 320 if len(testNames) >= c.MaxTestsPerProc { 321 c.PerformTests(exe, env, coverageFile, logPath, testNames, supportsCoverage, results) 323 testNames = testNames[:0] 326 if len(testNames) > 0 { 327 c.PerformTests(exe, env, coverageFile, logPath, testNames, supportsCoverage, results) 331 …ormTests(exe string, env []string, coverageFile string, logPath string, testNames []string, suppor… 342 stdin := strings.Join(testNames, "\n") + "\n" 344 numTests := len(testNames) [all …]
|
/external/skia/modules/pathkit/tests/ |
D | pathops.spec.js | 117 let testNames = Object.keys(json); 119 expect(testNames.length > 0).toBeTruthy(); 120 testNames.sort(); 121 for (testName of testNames) { 176 let testNames = Object.keys(json); 178 expect(testNames.length > 0).toBeTruthy(); 179 testNames.sort(); 180 for (testName of testNames) {
|
/external/angle/src/tests/gles_conformance_tests/ |
D | generate_gles_conformance_tests.py | 32 def GenerateTests(outFile, testNames): argument 34 testNames = list(set(testNames)) 39 for test in testNames:
|
/external/apache-xml/test/java/src/org/apache/qetest/xsl/ |
D | XSLTestHarness.java | 181 String testNames = testNamesStrBuff.toString(); in doTestHarnessInit() local 182 if (testNames.length() > 0) { in doTestHarnessInit() 183 testNames = testNames.substring(0, testNames.length()); in doTestHarnessInit() 186 if ((testNames == null) || (testNames.length() == 0)) in doTestHarnessInit() 193 StringTokenizer st = new StringTokenizer(testNames, TESTS_DELIMITER); in doTestHarnessInit()
|
/external/python/cpython3/Lib/unittest/ |
D | main.py | 131 self.testNames = _convert_names(self.tests) 137 self.testNames = None 139 self.testNames = (self.defaultTest,) 141 self.testNames = list(self.defaultTest) 150 elif self.testNames is None: 153 self.test = self.testLoader.loadTestsFromNames(self.testNames,
|
/external/python/cpython3/Lib/test/test_unittest/ |
D | test_program.py | 104 self.assertEqual(('test.test_unittest',), program.testNames) 121 program.testNames) 421 self.assertEqual(program.testNames, expected) 433 self.assertEqual(program.testNames, expected) 444 self.assertEqual(program.testNames, argv[1:]) 458 self.assertEqual(program.testNames, expected) 469 self.assertEqual(program.testNames, argv[1:])
|
/external/testng/src/main/java/org/testng/ |
D | TestNG.java | 424 private static XmlSuite extractTestNames(XmlSuite s, List<String> testNames) { in extractTestNames() argument 425 extractTestNamesFromChildSuites(s, testNames); in extractTestNames() 429 for (String tn : testNames) { in extractTestNames() 447 private static void extractTestNamesFromChildSuites(XmlSuite s, List<String> testNames) { in extractTestNamesFromChildSuites() argument 451 XmlSuite extracted = extractTestNames(child, testNames); in extractTestNamesFromChildSuites() 989 Set<String> testNames = Sets.newHashSet(); in checkTestNames() local 991 if (testNames.contains(test.getName())) { in checkTestNames() 995 testNames.add(test.getName()); in checkTestNames() 1423 if (cla.testNames != null) { in configure() 1424 setTestNames(Arrays.asList(cla.testNames.split(","))); in configure() [all …]
|
D | CommandLineArgs.java | 105 public String testNames; field in CommandLineArgs
|
D | TestNGAntTask.java | 348 public void setTestNames(String testNames) { in setTestNames() argument 349 m_testNames = testNames; in setTestNames()
|
/external/testng/src/test/java/test/name/ |
D | NameTest.java | 131 …List<String> testNames = new ArrayList<>(Arrays.asList("test1", "test2", "test3", "test4", "test5"… in complexITestTest() local 133 Assert.assertTrue(testNames.remove(testResult.getName()), in complexITestTest() 136 Assert.assertEquals(testNames, Collections.emptyList()); in complexITestTest()
|
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
D | NameTest.java | 34 public void testNames() { in testNames() method in NameTest
|
D | PathTester.java | 70 testNames(path); in test() 88 private void testNames(Path path) { in testNames() method in PathTester
|
/external/icu/icu4c/source/test/cintltst/ |
D | cucdapi.c | 53 const char* testNames[]={ in TestUScriptCodeAPI() local 110 for( ; testNames[i]!=NULL; i++){ in TestUScriptCodeAPI() 112 uscript_getCode(testNames[i],script,capacity, &err); in TestUScriptCodeAPI() 115 script[0],expected[i],testNames[i]); in TestUScriptCodeAPI()
|
/external/cronet/tot/third_party/icu/source/test/cintltst/ |
D | cucdapi.c | 53 const char* testNames[]={ in TestUScriptCodeAPI() local 110 for( ; testNames[i]!=NULL; i++){ in TestUScriptCodeAPI() 112 uscript_getCode(testNames[i],script,capacity, &err); in TestUScriptCodeAPI() 115 script[0],expected[i],testNames[i]); in TestUScriptCodeAPI()
|
/external/cronet/stable/third_party/icu/source/test/cintltst/ |
D | cucdapi.c | 53 const char* testNames[]={ in TestUScriptCodeAPI() local 110 for( ; testNames[i]!=NULL; i++){ in TestUScriptCodeAPI() 112 uscript_getCode(testNames[i],script,capacity, &err); in TestUScriptCodeAPI() 115 script[0],expected[i],testNames[i]); in TestUScriptCodeAPI()
|
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/ |
D | NameGeneratorTest.java | 60 public void testNames() { in testNames() method in NameGeneratorTest
|
/external/guava/android/guava-testlib/src/com/google/common/testing/ |
D | AbstractPackageSanityTests.java | 383 private static boolean hasTest(Class<?> testClass, Iterable<String> testNames) { in hasTest() argument 384 for (String testName : testNames) { in hasTest()
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | AbstractPackageSanityTests.java | 384 private static boolean hasTest(Class<?> testClass, Iterable<String> testNames) { in hasTest() argument 385 for (String testName : testNames) { in hasTest()
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | CommandLineArgs.java | 100 public String testNames; field in CommandLineArgs
|
/external/clang/test/Analysis/ |
D | refcnt_naming.m | 59 void testNames(NamingTest* x) {
|
/external/bcc/tests/lua/ |
D | luaunit.lua | 1437 local testNames = {} 1440 table.insert( testNames , k ) 1443 table.sort( testNames ) 1444 return testNames 2133 self:runSuiteByNames( options.testNames or M.LuaUnit.collectTests() )
|
/external/kotlinx.serialization/core/jvmTest/src/kotlinx/serialization/ |
D | SerializeFlatTest.kt | 152 fun testNames() { in testNames() method
|
/external/icu/icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ |
D | PerfTest.java | 576 Set<String> testNames = testProvider.getAllTestCmdNames(); in parseOptions() local 577 for (String name : testNames) { in parseOptions()
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | TestUtilities.java | 83 testNames(); in main() 114 private static void testNames() { in testNames() method in TestUtilities
|
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
D | vktComputeZeroInitializeWorkgroupMemoryTests.cpp | 1366 … std::string testNames[] = {"workgroup_size_128", "workgroup_size_8x8x2", "workgroup_size_8x2x8", in AddSharedMemoryTests() local 1372 for (const auto &testName : testNames) in AddSharedMemoryTests()
|