/third_party/node/test/common/ |
D | tmpdir.js | 18 const tmpPath = path.join(testRoot, tmpdirName); constant 39 rmSync(tmpPath); 41 console.error('Can\'t clean tmpdir:', tmpPath); 43 const files = fs.readdirSync(tmpPath); 59 path: tmpPath,
|
/third_party/node/test/parallel/ |
D | test-child-process-exec-any-shells-windows.js | 15 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/ |
D | fetch_sources.py | 146 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/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 57 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 54 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/skia/src/core/ |
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()
|
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() 403 dst->swap(tmpPath); in getFillPath()
|
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/flutter/skia/src/gpu/gl/ |
D | GrGLPath.cpp | 282 SkTLazy<SkPath> tmpPath; in GrGLPath() local 289 if (style.applyPathEffectToPath(tmpPath.init(), &stroke, *skPath, SK_Scalar1)) { in GrGLPath() 290 skPath = tmpPath.get(); in GrGLPath() 303 if (!tmpPath.isValid()) { in GrGLPath() 304 tmpPath.init(); in GrGLPath() 306 SkAssertResult(stroke.applyToPath(tmpPath.get(), *skPath)); in GrGLPath() 307 skPath = tmpPath.get(); in GrGLPath()
|
/third_party/node/test/sequential/ |
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/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | os.cpp | 142 std::string tmpPath; in CreateDirectoryPath() local 145 tmpPath.push_back('/'); in CreateDirectoryPath() 146 tmpPath += segment; in CreateDirectoryPath() 148 int result = mkdir(tmpPath.c_str(), 0777); in CreateDirectoryPath()
|
/third_party/flutter/skia/samplecode/ |
D | SampleAndroidShadows.cpp | 248 SkPath tmpPath; in onDrawContent() local 251 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath); in onDrawContent() 256 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, in onDrawContent() 262 Op(fSquareRRectPath, tmpClipPathBug, kIntersect_SkPathOp, &tmpPath); in onDrawContent() 266 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, in onDrawContent()
|
/third_party/skia/samplecode/ |
D | SampleAndroidShadows.cpp | 247 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/ |
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/openh264/codec/build/iOS/enc/encDemo/encDemo/ |
D | main.m | 64 NSString* tmpPath = [path stringByAppendingString:@"/"]; 65 tmpPath = [tmpPath stringByAppendingString:dirPath]; 66 [fileManager fileExistsAtPath:tmpPath isDirectory:&isDir];
|
/third_party/flutter/skia/src/gpu/geometry/ |
D | GrShape.cpp | 428 SkTLazy<SkPath> tmpPath; in GrShape() local 438 srcForPathEffect = tmpPath.init(); in GrShape() 439 parent.asPath(tmpPath.get()); in GrShape() 463 if (!tmpPath.isValid()) { in GrShape() 464 tmpPath.init(); in GrShape() 466 tmpParent.get()->asPath(tmpPath.get()); in GrShape() 471 *tmpPath.get(), scale)); in GrShape() 488 srcForParentStyle = tmpPath.init(); in GrShape() 489 parent.asPath(tmpPath.get()); in GrShape()
|
/third_party/flutter/skia/src/core/ |
D | SkPaint.cpp | 453 SkPath tmpPath; in getFillPath() local 455 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) { in getFillPath() 456 srcPtr = &tmpPath; in getFillPath() 460 if (srcPtr == &tmpPath) { in getFillPath() 465 dst->swap(tmpPath); in getFillPath()
|
D | SkDraw.cpp | 896 SkPath* tmpPath = &tmpPathStorage; in drawPath() local 899 tmpPath->setIsVolatile(true); in drawPath() 906 result = tmpPath; in drawPath() 951 doFill = paint->getFillPath(*pathPtr, tmpPath, cullRectPtr, in drawPath() 953 pathPtr = tmpPath; in drawPath() 957 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath; in drawPath()
|
/third_party/vk-gl-cts/scripts/ |
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/ |
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/flutter/skia/src/gpu/text/ |
D | GrTextBlob.cpp | 244 SkTLazy<SkPath> tmpPath; in flush() local 279 SkPath* sourceOutline = tmpPath.init(); in flush()
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrAAConvexPathRenderer.cpp | 749 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local 751 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()
|
/third_party/skia/src/gpu/ops/ |
D | AAConvexPathRenderer.cpp | 779 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local 781 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()
|
/third_party/flutter/skia/tests/ |
D | PathTest.cpp | 3277 SkPath tmpPath; in check_for_circle() local 3278 tmpPath.addOval(rect, isOvalDir, isOvalStart); in check_for_circle() 3279 REPORTER_ASSERT(reporter, path == tmpPath); in check_for_circle()
|
/third_party/skia/tests/ |
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()
|