Home
last modified time | relevance | path

Searched refs:tmpPath (Results 1 – 17 of 17) sorted by relevance

/third_party/node/test/common/
Dtmpdir.js18 const tmpPath = path.join(testRoot, tmpdirName); constant
22 rmSync(tmpPath);
23 fs.mkdirSync(tmpPath);
39 rmSync(tmpPath);
41 console.error('Can\'t clean tmpdir:', tmpPath);
43 const files = fs.readdirSync(tmpPath);
59 return path.resolve(tmpPath, ...paths);
63 const { bavail, bsize } = fs.statfsSync(tmpPath);
68 path: tmpPath,
/third_party/node/test/parallel/
Dtest-child-process-exec-any-shells-windows.js15 const tmpPath = `${tmpdir.path}\\path with spaces`; constant
16 fs.mkdirSync(tmpPath);
28 const copyPath = `${tmpPath}\\${shellName}`;
46 fs.writeFile(`${tmpPath}\\test file`, 'Test', common.mustSucceed(() => {
47 cp.exec(`Get-ChildItem "${tmpPath}" | Select-Object -Property Name`,
/third_party/vk-gl-cts/external/
Dfetch_sources.py146 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
150 if os.path.exists(tmpPath):
151 shutil.rmtree(tmpPath, ignore_errors=False)
153 os.mkdir(tmpPath)
155 archive.extractall(tmpPath)
158 extractedEntries = os.listdir(tmpPath)
159 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
162 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
173 shutil.rmtree(tmpPath, ignore_errors=True)
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DCompatibilityTest.java54 String tmpPath = fileName.replaceAll("\\\\", "/"); in FileHolder() local
56 int fileBreak = tmpPath.lastIndexOf('/'); in FileHolder()
57 this.className = fileName.substring(fileBreak + 1, tmpPath.lastIndexOf('.')); in FileHolder()
58 int finalDirBreak = tmpPath.lastIndexOf("/ICU"); in FileHolder()
59 this.icuVersion = tmpPath.substring(finalDirBreak + 1, fileBreak); in FileHolder()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
DCompatibilityTest.java57 String tmpPath = fileName.replaceAll("\\\\", "/"); in FileHolder() local
59 int fileBreak = tmpPath.lastIndexOf('/'); in FileHolder()
60 this.className = fileName.substring(fileBreak + 1, tmpPath.lastIndexOf('.')); in FileHolder()
61 int finalDirBreak = tmpPath.lastIndexOf("/ICU"); in FileHolder()
62 this.icuVersion = tmpPath.substring(finalDirBreak + 1, fileBreak); in FileHolder()
/third_party/skia/src/core/
DSkClipStackDevice.cpp85 SkPath tmpPath; in onAsRgnClip() local
90 tmpPath.rewind(); in onAsRgnClip()
91 elem->asDeviceSpacePath(&tmpPath); in onAsRgnClip()
93 tmpRgn.setPath(tmpPath, boundsRgn); in onAsRgnClip()
DSkPaint.cpp391 SkPath tmpPath; in getFillPath() local
393 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect, ctm)) { in getFillPath()
394 srcPtr = &tmpPath; in getFillPath()
398 if (srcPtr == &tmpPath) { in getFillPath()
403 dst->swap(tmpPath); in getFillPath()
DSkDraw.cpp887 SkPath* tmpPath = &tmpPathStorage; in drawPath() local
890 tmpPath->setIsVolatile(true); in drawPath()
897 result = tmpPath; in drawPath()
940 doFill = paint->getFillPath(*pathPtr, tmpPath, cullRectPtr, in drawPath()
942 pathPtr = tmpPath; in drawPath()
946 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath; in drawPath()
/third_party/node/test/sequential/
Dtest-tls-session-timeout.js72 const tmpPath = join(tmpdir.path, ticketFileName);
73 fs.writeFileSync(tmpPath, fixtures.readSync(ticketFileName));
74 return tmpPath;
/third_party/skia/samplecode/
DSampleAndroidShadows.cpp247 SkPath tmpPath; in onDrawContent() local
250 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath); in onDrawContent()
255 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, in onDrawContent()
261 Op(fSquareRRectPath, tmpClipPathBug, kIntersect_SkPathOp, &tmpPath); in onDrawContent()
265 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, in onDrawContent()
/third_party/skia/src/gpu/geometry/
DGrStyledShape.cpp343 SkTLazy<SkPath> tmpPath; in GrStyledShape() local
355 srcForPathEffect = tmpPath.init(); in GrStyledShape()
356 parent.asPath(tmpPath.get()); in GrStyledShape()
380 if (!tmpPath.isValid()) { in GrStyledShape()
381 tmpPath.init(); in GrStyledShape()
383 tmpParent->asPath(tmpPath.get()); in GrStyledShape()
388 *tmpPath.get(), scale)); in GrStyledShape()
405 srcForParentStyle = tmpPath.init(); in GrStyledShape()
406 parent.asPath(tmpPath.get()); in GrStyledShape()
/third_party/openh264/codec/build/iOS/enc/encDemo/encDemo/
Dmain.m64 NSString* tmpPath = [path stringByAppendingString:@"/"];
65 tmpPath = [tmpPath stringByAppendingString:dirPath];
66 [fileManager fileExistsAtPath:tmpPath isDirectory:&isDir];
/third_party/vk-gl-cts/scripts/
Dmake_release.py334 tmpPath = getTempDir()
336 dstBasePath = os.path.join(tmpPath, releaseName)
337 tmpBasePath = os.path.join(tmpPath, releaseName + "-tmp")
341 print("Creating release %s to %s" % (releaseName, tmpPath))
/third_party/astc-encoder/Test/
Dastc_test_functional.py198 tmpFile, tmpPath = tempfile.mkstemp(mode, dir=self.tempDir.name)
200 os.remove(tmpPath)
201 return tmpPath
226 tmpFile, tmpPath = tempfile.mkstemp(suffix, dir=self.tempDir.name)
228 os.remove(tmpPath)
229 return tmpPath
/third_party/skia/src/gpu/v1/
DDevice.cpp287 SkPath tmpPath; in onAsRgnClip() local
288 e.fShape.asPath(&tmpPath); in onAsRgnClip()
289 tmpPath.transform(e.fLocalToDevice); in onAsRgnClip()
290 tmp.setPath(tmpPath, deviceBounds); in onAsRgnClip()
/third_party/skia/src/gpu/ops/
DAAConvexPathRenderer.cpp779 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local
781 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()
/third_party/skia/tests/
DPathTest.cpp3302 SkPath tmpPath; in check_for_circle() local
3303 tmpPath.addOval(rect, isOvalDir, isOvalStart); in check_for_circle()
3304 REPORTER_ASSERT(reporter, path == tmpPath); in check_for_circle()