/third_party/node/test/common/ |
H A D | tmpdir.js | 19 const tmpPath = path.join(testRoot, tmpdirName); 23 rmSync(tmpPath); 24 fs.mkdirSync(tmpPath); 40 rmSync(tmpPath); 42 console.error('Can\'t clean tmpdir:', tmpPath); 44 const files = fs.readdirSync(tmpPath); 60 return path.resolve(tmpPath, ...paths); 64 const { bavail, bsize } = fs.statfsSync(tmpPath); 70 const fullPath = path.resolve(tmpPath + path.sep, ...paths); 78 path: tmpPath, [all...] |
/third_party/skia/src/core/ |
H A D | SkClipStackDevice.cpp | 85 SkPath tmpPath; in onAsRgnClip() local 90 tmpPath.rewind(); in onAsRgnClip() 91 elem->asDeviceSpacePath(&tmpPath); in onAsRgnClip() 93 tmpRgn.setPath(tmpPath, boundsRgn); in onAsRgnClip()
|
H A D | SkPaint.cpp | 391 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() 400 // As it is, we want to save making a deep-copy from tmpPath -> dst in getFillPath() 401 // since we know we're just going to delete tmpPath when we return, in getFillPath() 403 dst->swap(tmpPath); in getFillPath()
|
H A D | SkDraw.cpp | 887 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/vk-gl-cts/external/ |
H A D | fetch_sources.py | 151 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir) 159 if os.path.exists(tmpPath): 160 shutil.rmtree(tmpPath, ignore_errors=False) 162 os.mkdir(tmpPath) 164 archive.extractall(tmpPath) 167 extractedEntries = os.listdir(tmpPath) 168 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])): 171 topLevelPath = os.path.join(tmpPath, extractedEntries[0]) 182 shutil.rmtree(tmpPath, ignore_errors=True)
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
H A D | CompatibilityTest.java | 57 String tmpPath = fileName.replaceAll("\\\\", "/"); in FileHolder() 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
H A D | CompatibilityTest.java | 54 String tmpPath = fileName.replaceAll("\\\\", "/"); in FileHolder() 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/node/test/sequential/ |
H A D | test-tls-session-timeout.js | 72 const tmpPath = join(tmpdir.path, ticketFileName); 73 fs.writeFileSync(tmpPath, fixtures.readSync(ticketFileName)); 74 return tmpPath;
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrStyledShape.cpp | 343 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/skia/samplecode/ |
H A D | SampleAndroidShadows.cpp | 247 SkPath tmpPath; variable 250 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath); 255 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, 261 Op(fSquareRRectPath, tmpClipPathBug, kIntersect_SkPathOp, &tmpPath); 265 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f,
|
/third_party/vk-gl-cts/scripts/ |
H A D | make_release.py | 334 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/skia/src/gpu/v1/ |
H A D | Device.cpp | 287 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/astc-encoder/Test/ |
H A D | astc_test_functional.py | 198 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/ops/ |
H A D | AAConvexPathRenderer.cpp | 786 SkTLazy<SkPath> tmpPath; variable 788 SkPath* tmpPathPtr = tmpPath.init(*pathPtr);
|
/third_party/skia/tests/ |
H A D | PathTest.cpp | 3302 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()
|