/external/antlr/runtime/Python3/ |
D | setup.py | 104 for testPath in glob.glob(os.path.join(testDir, 'test*.py')): 105 testFiles.append(testPath) 108 for testPath in testFiles: 109 testID = os.path.basename(testPath)[:-3] 128 (os.path.basename(testPath), buf.getvalue()) 220 for testPath in glob.glob(os.path.join(testDir, test_glob)): 221 if testPath.endswith('Lexer.py') or testPath.endswith('Parser.py'): 227 and not os.path.basename(testPath)[:-3].startswith(self.testcase)): 230 testFiles.append(testPath) 233 for testPath in testFiles: [all …]
|
/external/antlr/runtime/Python/ |
D | setup.py | 101 for testPath in glob.glob(os.path.join(testDir, 'test*.py')): 102 testFiles.append(testPath) 105 for testPath in testFiles: 106 testID = os.path.basename(testPath)[:-3] 125 (os.path.basename(testPath), buf.getvalue()) 226 for testPath in glob.glob(os.path.join(testDir, test_glob)): 227 if testPath.endswith('Lexer.py') or testPath.endswith('Parser.py'): 233 and not os.path.basename(testPath)[:-3].startswith(self.testcase)): 236 testFiles.append(testPath) 239 for testPath in testFiles: [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/formats/ |
D | googletest.py | 95 testPath = path_in_suite + (subdir, fn, testname) 96 yield lit.Test.Test(testSuite, testPath, localConfig, 100 testPath,testName = os.path.split(test.getSourcePath()) 101 while not os.path.exists(testPath): 104 testPath, namePrefix = os.path.split(testPath) 107 cmd = [testPath, '--gtest_filter=' + testName]
|
/external/libcxx/utils/libcxx/test/ |
D | googlebenchmark.py | 85 testPath = path_in_suite + (subdir, fn, testname) 86 yield lit.Test.Test(testSuite, testPath, localConfig, 90 testPath,testName = os.path.split(test.getSourcePath()) 91 while not os.path.exists(testPath): 94 testPath, namePrefix = os.path.split(testPath) 97 cmd = [testPath, '--benchmark_filter=%s$' % testName ] + self.benchmark_args
|
/external/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ |
D | ctor.pass.cpp | 68 for (path const& testPath : testPaths) in TEST_CASE() 71 directory_iterator it(testPath, ec); in TEST_CASE() 76 directory_iterator it(testPath, opts, ec); in TEST_CASE() 81 TEST_CHECK_THROW(filesystem_error, directory_iterator(testPath)); in TEST_CASE() 82 TEST_CHECK_THROW(filesystem_error, directory_iterator(testPath, opts)); in TEST_CASE() 208 const path testPath = ""; in TEST_CASE() local 212 directory_iterator it(testPath, ec); in TEST_CASE() 219 const path testPath = "."; in TEST_CASE() local 222 directory_iterator it(testPath, ec); in TEST_CASE()
|
/external/llvm/utils/lit/lit/formats/ |
D | googletest.py | 78 testPath = path_in_suite + (basename, testname) 79 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath) 104 testPath,testName = os.path.split(test.getSourcePath()) 105 while not os.path.exists(testPath): 108 testPath, namePrefix = os.path.split(testPath) 111 cmd = [testPath, '--gtest_filter=' + testName]
|
/external/icu/icu4c/source/test/cintltst/ |
D | udatatst.c | 140 const char* testPath=loadTestData(&status); in TestUDataOpen() local 148 log_verbose("Testing udata_open(%s)\n", testPath); in TestUDataOpen() 149 result=udata_open(testPath, type, name, &status); in TestUDataOpen() 151 …data_open() failed for path = %s, name=%s, type=%s, \n errorcode=%s\n", testPath, name, type, myEr… in TestUDataOpen() 298 result = udata_open( testPath, "typ", "nam", &status); in TestUDataOpen() 300 …log_data_err("FAIL: udata_open( \"%s\", \"typ\", \"nam\") returned status %s\n", testPath, u_error… in TestUDataOpen() 363 strcat(longTestPath, testPath); in TestUDataOpen() 654 const char* testPath="testdata"; in TestUDataOpenChoiceDemo1() local 687 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status); in TestUDataOpenChoiceDemo1() 690 result=udata_openChoice(testPath, type, name[2], isAcceptable3, NULL, &status); in TestUDataOpenChoiceDemo1() [all …]
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | TestFormats.py | 77 testPath = path_in_suite + (filename, subfilename, name) 78 yield Test.Test(testSuite, testPath, localConfig) 81 testPath,testName = os.path.split(test.getSourcePath()) 82 while not os.path.exists(testPath): 85 testPath, namePrefix = os.path.split(testPath) 88 cmd = [testPath, '--gtest_filter=' + testName]
|
/external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ |
D | ctor.pass.cpp | 69 for (path const& testPath : testPaths) in TEST_CASE() 72 RDI it(testPath, ec); in TEST_CASE() 77 RDI it(testPath, opts, ec); in TEST_CASE() 82 TEST_CHECK_THROW(filesystem_error, RDI(testPath)); in TEST_CASE() 83 TEST_CHECK_THROW(filesystem_error, RDI(testPath, opts)); in TEST_CASE()
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | FileWritingTest.java | 83 Path testPath = fsRoot.resolve("Test.java"); in pathDefaultPackage() local 84 assertThat(Files.exists(testPath)).isTrue(); in pathDefaultPackage() 99 Path testPath = fsRoot.resolve("Test.java"); in filerDefaultPackage() local 100 assertThat(Files.exists(testPath)).isTrue(); in filerDefaultPackage()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowContentResolver.java | 111 String testPath = test.getPath(); in matches() local 113 return Objects.equals(uriPath, testPath) in matches() 114 || (notifyForDescendents && testPath != null && testPath.startsWith(uriPath)); in matches()
|
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunnerTest.java | 179 final String testPath = "dEQP-GLES" in testGlesVersion() local 205 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testGlesVersion() 322 final String testPath = "dEQP-GLES3.info.version"; in testResultCode() local 341 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testResultCode() 1011 final String testPath = "dEQP-GLES3.orientation.test"; in testOrientation() local 1028 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testOrientation() 1808 final String testPath = "dEQP-GLES3.interrupt.test"; in testInterrupt_killReportTestFailed() local 1825 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testInterrupt_killReportTestFailed()
|
/external/icu/icu4c/source/test/intltest/ |
D | intltest.cpp | 568 testPath = NULL; in IntlTest() 609 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath ); in callTest() 616 this->testPath = pathVal; in setPath() 694 testPath = pos+1; // store subpath for calling subtest in runTest() 697 testPath = NULL; in runTest()
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | FakeUnixFileSystemTest.groovy | 42 void testPath() {
|
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 51 void testPath() {
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 51 void testPath() {
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 51 void testPath() {
|
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 51 void testPath() {
|
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixFakeFileSystemTest.groovy | 53 void testPath() {
|