/external/deqp/external/ |
D | fetch_sources.py | 119 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir) 123 if os.path.exists(tmpPath): 124 shutil.rmtree(tmpPath, ignore_errors=False) 126 os.mkdir(tmpPath) 128 archive.extractall(tmpPath) 131 extractedEntries = os.listdir(tmpPath) 132 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])): 135 topLevelPath = os.path.join(tmpPath, extractedEntries[0]) 146 shutil.rmtree(tmpPath, ignore_errors=True)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Path.cpp | 241 Path tmpPath; in getPathList() local 244 if (tmpPath.set(tmp)) in getPathList() 245 if (tmpPath.canRead()) in getPathList() 246 Paths.push_back(tmpPath); in getPathList() 252 if (tmpPath.set(std::string(at))) in getPathList() 253 if (tmpPath.canRead()) in getPathList() 254 Paths.push_back(tmpPath); in getPathList()
|
/external/skia/src/gpu/ |
D | GrBlurUtils.cpp | 157 SkTLazy<SkPath> tmpPath; in draw_path_with_mask_filter() local 163 if (0 == scale || !style.applyToPath(tmpPath.init(), &fillOrHairline, *path, scale)) { in draw_path_with_mask_filter() 167 path = tmpPath.get(); in draw_path_with_mask_filter() 181 if (!tmpPath.isValid()) { in draw_path_with_mask_filter() 182 tmpPath.init(); in draw_path_with_mask_filter() 184 result = tmpPath.get(); in draw_path_with_mask_filter() 275 SkTLazy<SkPath> tmpPath; in drawPathWithMaskFilter() local 284 SkPath* result = pathIsMutable ? const_cast<SkPath*>(path) : tmpPath.init(); in drawPathWithMaskFilter()
|
D | GrShape.cpp | 275 SkTLazy<SkPath> tmpPath; in GrShape() local 285 srcForPathEffect = tmpPath.init(); in GrShape() 286 parent.asPath(tmpPath.get()); in GrShape() 310 if (!tmpPath.isValid()) { in GrShape() 311 tmpPath.init(); in GrShape() 313 tmpParent.get()->asPath(tmpPath.get()); in GrShape() 318 *tmpPath.get(), scale)); in GrShape() 335 srcForParentStyle = tmpPath.init(); in GrShape() 336 parent.asPath(tmpPath.get()); in GrShape()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 55 String tmpPath = fileName.replaceAll("\\\\", "/"); in FileHolder() local 57 int fileBreak = tmpPath.lastIndexOf('/'); in FileHolder() 58 this.className = fileName.substring(fileBreak + 1, tmpPath.lastIndexOf('.')); in FileHolder() 59 int finalDirBreak = tmpPath.lastIndexOf("/ICU"); in FileHolder() 60 this.icuVersion = tmpPath.substring(finalDirBreak + 1, fileBreak); in FileHolder()
|
/external/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()
|
/external/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()
|
D | GrGLPathRange.cpp | 71 SkTLazy<SkPath> tmpPath; in onInitPath() local 79 if (!fStyle.applyToPath(tmpPath.init(), &fill, *skPath, SK_Scalar1)) { in onInitPath() 85 skPath = tmpPath.get(); in onInitPath()
|
/external/skia/samplecode/ |
D | SampleAndroidShadows.cpp | 213 SkPath tmpPath; in onDrawContent() local 216 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath); in onDrawContent() 221 this->drawShadowedPath(canvas, tmpPath, zPlaneParams, paint, .1f, in onDrawContent()
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | SwatDeprecated.java | 190 String tmpPath = tmpFile.getPath(); in processFile() local 192 pw.println("tmpFile: " + tmpPath); in processFile() 284 … throw new RuntimeException("unable to delete unneeded temporary file: " + tmpPath); in processFile()
|
/external/deqp/scripts/ |
D | make_release.py | 332 tmpPath = getTempDir() 334 dstBasePath = os.path.join(tmpPath, releaseName) 335 tmpBasePath = os.path.join(tmpPath, releaseName + "-tmp") 339 print "Creating release %s to %s" % (releaseName, tmpPath)
|
/external/skia/src/core/ |
D | SkDraw.cpp | 1043 SkPath tmpPath; in drawPath() local 1046 tmpPath.setIsVolatile(true); in drawPath() 1054 result = &tmpPath; in drawPath() 1099 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr, in drawPath() 1101 pathPtr = &tmpPath; in drawPath() 1116 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath; in drawPath()
|
D | SkPaint.cpp | 1963 SkPath tmpPath; in getFillPath() local 1965 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) { in getFillPath() 1966 srcPtr = &tmpPath; in getFillPath() 1970 if (srcPtr == &tmpPath) { in getFillPath() 1975 dst->swap(tmpPath); in getFillPath()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Path.inc | 279 Path tmpPath; 280 if (tmpPath.set(LLVM_LIBDIR)) 281 if (tmpPath.canRead()) 282 Paths.push_back(tmpPath);
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | Path.inc | 228 Path tmpPath; 229 if (tmpPath.set(LLVM_LIBDIR)) 230 if (tmpPath.canRead()) 231 Paths.push_back(tmpPath);
|
/external/skia/src/gpu/ops/ |
D | GrAAConvexPathRenderer.cpp | 855 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local 857 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()
|
/external/skia/tests/ |
D | PathTest.cpp | 3286 SkPath tmpPath; in check_for_circle() local 3287 tmpPath.addOval(rect, isOvalDir, isOvalStart); in check_for_circle() 3288 REPORTER_ASSERT(reporter, path == tmpPath); in check_for_circle()
|