Home
last modified time | relevance | path

Searched refs:testPath (Results 1 – 25 of 55) 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/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/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/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/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/icu/tools/testing/test_harness/src/com/android/icu/tradefed/testtype/
DICU4CTest.java227 StringBuilder testPath = new StringBuilder(DEFAULT_NATIVETEST_PATH); in getTestPath() local
229 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
230 testPath.append(mTestModule); in getTestPath()
232 return testPath.toString(); in getTestPath()
388 String testPath = getTestPath(); in run() local
389 if (!mDevice.doesFileExist(testPath)) { in run()
393 testPath, mDevice.getSerialNumber())); in run()
395 if (!isDeviceFileExecutable(testPath)) { in run()
399 testPath, mDevice.getSerialNumber())); in run()
406 runTest(mDevice, testPath, listener); in run()
/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/bazel-skylib/gazelle/bzl/
Dgazelle_test.go62 testPath(t, testName, files)
66 func testPath(t *testing.T, name string, files []bazel.RunfileEntry) { func
/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.java185 final String testPath = "dEQP-GLES" in testGlesVersion() local
211 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testGlesVersion()
333 final String testPath = "dEQP-GLES3.info.version"; in testResultCode() local
352 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testResultCode()
1175 final String testPath = "dEQP-GLES3.orientation.test"; in testOrientation() local
1192 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testOrientation()
1986 final String testPath = "dEQP-GLES3.interrupt.test"; in testInterrupt_killReportTestFailed() local
2003 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testInterrupt_killReportTestFailed()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowContentResolver.java142 String testPath = test.getPath(); in matches() local
144 return Objects.equals(uriPath, testPath) in matches()
145 || (notifyForDescendents && testPath != null && testPath.startsWith(uriPath)); in matches()
/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.cpp511 testPath = NULL; in IntlTest()
554 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath); in callTest()
562 this->testPath = pathVal; in setPath()
647 testPath = pos+1; // store subpath for calling subtest in runTest()
650 testPath = NULL; in runTest()
/external/mockftpserver/tags/2.0-rc1/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.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy53 void testPath() {
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy51 void testPath() {
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy53 void testPath() {
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DUnixFakeFileSystemTest.groovy53 void testPath() {

123