Home
last modified time | relevance | path

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

/external/skia/src/gpu/gl/
DGrGLPathRange.cpp72 SkTLazy<SkPath> tmpPath; in onInitPath() local
82 if (!stroke->applyDashToPath(tmpPath.init(), &tmpStroke, *skPath)) { in onInitPath()
85 skPath = tmpPath.get(); in onInitPath()
89 if (!tmpPath.isValid()) { in onInitPath()
90 tmpPath.init(); in onInitPath()
92 if (!stroke->applyToPath(tmpPath.get(), *tmpPath.get())) { in onInitPath()
DGrGLPath.cpp273 SkTLazy<SkPath> tmpPath; in GrGLPath() local
281 if (stroke->applyDashToPath(tmpPath.init(), &tmpStroke, *skPath)) { in GrGLPath()
282 skPath = tmpPath.get(); in GrGLPath()
294 if (!tmpPath.isValid()) { in GrGLPath()
295 tmpPath.init(); in GrGLPath()
297 SkAssertResult(stroke->applyToPath(tmpPath.get(), *skPath)); in GrGLPath()
298 skPath = tmpPath.get(); in GrGLPath()
/external/deqp/external/
Dfetch_sources.py104 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
108 if os.path.exists(tmpPath):
109 shutil.rmtree(tmpPath, ignore_errors=False)
111 os.mkdir(tmpPath)
113 archive.extractall(tmpPath)
116 extractedEntries = os.listdir(tmpPath)
117 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
120 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
131 shutil.rmtree(tmpPath, ignore_errors=True)
/external/skia/src/gpu/
DGrBlurUtils.cpp163 SkTLazy<SkPath> tmpPath; in draw_path_with_mask_filter() local
171 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init(); in draw_path_with_mask_filter()
190 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init(); in draw_path_with_mask_filter()
263 SkTLazy<SkPath> tmpPath; in drawPathWithMaskFilter() local
266 if (!strokeInfo.isDashed() && pathEffect && pathEffect->filterPath(tmpPath.init(), *pathPtr, in drawPathWithMaskFilter()
268 pathPtr = tmpPath.get(); in drawPathWithMaskFilter()
298 SkTLazy<SkPath> tmpPath; in drawPathWithMaskFilter() local
314 result = tmpPath.init(); in drawPathWithMaskFilter()
DGrDrawContext.cpp742 SkTLazy<SkPath> tmpPath; in internalDrawPath() local
760 if (!strokeInfo.applyDashToPath(tmpPath.init(), &dashlessStrokeInfo, *pathPtr)) { in internalDrawPath()
763 pathPtr = tmpPath.get(); in internalDrawPath()
779 if (!tmpPath.isValid()) { in internalDrawPath()
780 tmpPath.init(); in internalDrawPath()
783 if (!dashlessStrokeInfo.applyToPath(tmpPath.get(), *pathPtr)) { in internalDrawPath()
786 pathPtr = tmpPath.get(); in internalDrawPath()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DSwatDeprecated.java188 String tmpPath = tmpFile.getPath(); in processFile() local
190 pw.println("tmpFile: " + tmpPath); in processFile()
282 … throw new RuntimeException("unable to delete unneeded temporary file: " + tmpPath); in processFile()
/external/deqp/scripts/
Dmake_release.py332 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/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp75 SkPath tmpPath; in DrawPath() local
101 doFill = paint->getFillPath(*pathPtr, &tmpPath, &cullRect); in DrawPath()
102 pathPtr = &tmpPath; in DrawPath()
/external/skia/src/core/
DSkDraw.cpp1031 SkPath tmpPath; in drawPath() local
1034 tmpPath.setIsVolatile(true); in drawPath()
1042 result = &tmpPath; in drawPath()
1087 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr, in drawPath()
1089 pathPtr = &tmpPath; in drawPath()
1104 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath; in drawPath()
DSkPaint.cpp2039 SkPath tmpPath; in getFillPath() local
2041 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) { in getFillPath()
2042 srcPtr = &tmpPath; in getFillPath()
2046 if (srcPtr == &tmpPath) { in getFillPath()
2051 dst->swap(tmpPath); in getFillPath()
/external/skia/src/gpu/batches/
DGrAAConvexPathRenderer.cpp880 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local
882 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()
DGrPLSPathRenderer.cpp858 SkTLazy<SkPath> tmpPath; in onPrepareDraws() local
860 SkPath* tmpPathPtr = tmpPath.init(*pathPtr); in onPrepareDraws()