Home
last modified time | relevance | path

Searched refs:testPath (Results 1 – 25 of 59) sorted by relevance

123

/external/antlr/runtime/Python3/
Dsetup.py104 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/
Dsetup.py101 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/libcxx/utils/libcxx/test/
Dgooglebenchmark.py85 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/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/formats/
Dgoogletest.py95 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/skia/docs/examples/
DCanvas_quickReject_2.cpp9 SkPath testPath, clipPath; in draw() local
10 testPath.addPoly(testPoints, SK_ARRAY_COUNT(testPoints), true); in draw()
14 SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); in draw()
18 SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); in draw()
DRegion_contains_3.cpp10 SkPath xPath, testPath;
12 paint.getTextPath("`", 1, frame * 150 - 40, 150, &testPath);
16 testRegion.setPath(testPath, SkRegion(drawBounds));
/external/llvm/utils/lit/lit/formats/
Dgoogletest.py78 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/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/
Dctor.pass.cpp68 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/icu/tools/testing/test_harness/src/com/android/icu/tradefed/testtype/
DICU4CTest.java226 StringBuilder testPath = new StringBuilder(DEFAULT_NATIVETEST_PATH); in getTestPath() local
228 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
229 testPath.append(mTestModule); in getTestPath()
231 return testPath.toString(); in getTestPath()
387 String testPath = getTestPath(); in run() local
388 if (!mDevice.doesFileExist(testPath)) { in run()
392 testPath, mDevice.getSerialNumber())); in run()
394 if (!isDeviceFileExecutable(testPath)) { in run()
398 testPath, mDevice.getSerialNumber())); in run()
403 runTest(mDevice, testPath, listener); in run()
/external/icu/icu4c/source/test/cintltst/
Dudatatst.c140 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()
657 const char* testPath="testdata"; in TestUDataOpenChoiceDemo1() local
690 result=udata_openChoice(testPath, type, name[2], isAcceptable1, NULL, &status); in TestUDataOpenChoiceDemo1()
693 result=udata_openChoice(testPath, type, name[2], isAcceptable3, NULL, &status); in TestUDataOpenChoiceDemo1()
[all …]
/external/angle/src/tests/gles_conformance_tests/
Dgles_conformance_tests.h51 void run(const std::string &testPath) { RunConformanceTest(testPath, mNativeDisplay); } in run() argument
57 void RunConformanceTest(const std::string &testPath, EGLNativeDisplayType nativeDisplay);
Dgles_conformance_tests.cpp51 void RunConformanceTest(const std::string &testPath, EGLNativeDisplayType nativeDisplay) in RunConformanceTest() argument
68 GetExecutableDirectory().c_str(), testPath.c_str()); in RunConformanceTest()
/external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/
Dctor.pass.cpp69 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/
DFileWritingTest.java83 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/
DShadowContentResolver.java111 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/
DDeqpTestRunnerTest.java179 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/angle/src/tests/deqp_support/
Dangle_deqp_gtest.cpp170 const char *testPath = paths[pathIndex]; in FindFileFromPaths() local
172 pathStringStream << exeDir << testPath << searchFile; in FindFileFromPaths()
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/
DFakeUnixFileSystemTest.groovy42 void testPath() {
/external/icu/icu4c/source/test/intltest/
Dintltest.cpp516 testPath = NULL; in IntlTest()
559 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath); in callTest()
567 this->testPath = pathVal; in setPath()
652 testPath = pos+1; // store subpath for calling subtest in runTest()
655 testPath = NULL; in runTest()
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy51 void testPath() {
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy51 void testPath() {
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy53 void testPath() {
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy53 void testPath() {
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy51 void testPath() {
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy51 void testPath() {

123