Home
last modified time | relevance | path

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

12

/third_party/node/deps/npm/node_modules/fs-vacuum/test/
Dno-entries-with-purge.js24 var testPath, testBase variable
30 testPath = path.resolve(tmpdir, LONG_PATH)
32 mkdirp(testPath, function (er) {
43 vacuum(testPath, {purge: true, base: testBase, log: log}, function (er) {
47 t.equal(messages[0], 'purging ' + testPath)
51 var verifyPath = testPath
Dno-entries-no-purge.js21 var testPath, testBase variable
27 testPath = path.resolve(tmpdir, LONG_PATH)
29 mkdirp(testPath, function (er) {
38 vacuum(testPath, {purge: false, base: testBase, log: log}, function (er) {
45 var verifyPath = testPath
Dother-directories-no-purge.js22 var testBase, testPath, otherPath variable
28 testPath = path.resolve(tmpdir, REMOVE_PATH)
31 mkdirp(testPath, function (er) {
44 vacuum(testPath, {purge: false, base: testBase, log: log}, function (er) {
54 var verifyPath = testPath
/third_party/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 …]
/third_party/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));
/third_party/flutter/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));
/third_party/node/test/parallel/
Dtest-http-client-get-url.js27 const testPath = '/foo?bar'; constant
31 assert.strictEqual(req.url, testPath);
38 const u = `http://${common.localhostIPv4}:${server.address().port}${testPath}`;
Dtest-fs-realpath.js244 let testPath = cycles;
245 testPath += '/folder/cycles'.repeat(10);
249 assertEqualPath(realpathSync(testPath), path.resolve(expected));
250 asynctest(realpath, [testPath], callback, function(er, res) {
Dtest-repl-tab-complete.js496 const testPath = fixturePath.slice(0, -1); constant
497 testMe.complete(testPath, common.mustCall((err, data) => {
502 path.basename(testPath)
/third_party/flutter/skia/third_party/externals/angle2/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()
/third_party/skia/third_party/externals/angle2/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()
/third_party/typescript/src/testRunner/unittests/tsc/
DdeclarationEmit.ts10 …function changeCaseFile(file: TestFSWithWatch.FileOrFolderOrSymLink, testPath: (path: string) => b…
11 return !TestFSWithWatch.isSymLink(file) || !testPath(file.symLink) ?
12 testPath(file.path) ? { ...file, path: replacePath(file.path) } : file :
13 …{ path: testPath(file.path) ? replacePath(file.path) : file.path, symLink: replacePath(file.symLin…
/third_party/flutter/flutter/packages/flutter_tools/tool/
Dtool_coverage.dart113 String testPath = path.absolute(path.join(precompiledPath, codePath) + '.vm_test.dart');
114 testPath = testPath.substring(0, testPath.length - '.dart'.length) + '.vm.app.dill';
115 return await Isolate.spawnUri(path.toUri(testPath), <String>[], message,
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/
Dflutter_platform.dart396 String testPath,
400 printTrace('test $ourTestCount: starting test $testPath');
446 mainDart = precompiledDillFiles[testPath];
448 mainDart ??= _createListenerDart(finalizers, ourTestCount, testPath, server);
456 controller.sink.addError(_getErrorMessage('Compilation failed', testPath, shellPath));
484 testPath,
557 testPath,
571 …final String message = _getErrorMessage('Test never connected to test harness.', testPath, shellPa…
593 …('test harness controller stream experienced an unexpected error\ntest: $testPath\nerror: $error');
614 … printError('test socket stream experienced an unexpected error\ntest: $testPath\nerror: $error');
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Dtest_test.dart212 String testPath;
215 testPath = testDirectory;
216 final Directory directoryToTest = fs.directory(testPath);
221 testPath = fs.path.join(testDirectory, '${testName}_test.dart');
222 final File testFile = fs.file(testPath);
233 testPath
/third_party/typescript/src/testRunner/unittests/services/
DorganizeImports.ts931 const { path: testPath, content: testContent } = testFile;
933 …const changes = languageService.organizeImports({ type: "file", fileName: testPath }, testFormatSe…
935 assert.equal(changes[0].fileName, testPath);
/third_party/vk-gl-cts/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()
1988 final String testPath = "dEQP-GLES3.interrupt.test"; in testInterrupt_killReportTestFailed() local
2005 + "INSTRUMENTATION_STATUS: dEQP-BeginTestCase-TestCasePath=" + testPath + "\r\n" in testInterrupt_killReportTestFailed()
/third_party/flutter/flutter/dev/bots/
Dtest.dart520 String testPath,
528 if (testPath != null) {
529 args.add(testPath);
582 String testPath,
589 if (testPath != null)
590 args.add(testPath);
/third_party/flutter/skia/third_party/externals/angle2/src/tests/deqp_support/
Dangle_deqp_gtest.cpp164 const char *testPath = paths[pathIndex]; in FindFileFromPaths() local
166 pathStringStream << exeDir << testPath << searchFile; in FindFileFromPaths()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dtest.dart145 …able<String> files = argResults.rest.map<String>((String testPath) => fs.path.absolute(testPath)).…
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkResourceInterface.cpp525 VkPipelineOfflineCreateInfo makeGraphicsPipelineIdentifier (const std::string& testPath, const VkGr… in makeGraphicsPipelineIdentifier() argument
527 DE_UNREF(testPath); in makeGraphicsPipelineIdentifier()
534 VkPipelineOfflineCreateInfo makeComputePipelineIdentifier (const std::string& testPath, const VkCom… in makeComputePipelineIdentifier() argument
536 DE_UNREF(testPath); in makeComputePipelineIdentifier()

12