Searched refs:tmpPath (Results 1 - 14 of 14) sorted by relevance

/external/deqp/external/
H A Dfetch_sources.py57 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % pkg.dstDir)
61 if os.path.exists(tmpPath):
62 shutil.rmtree(tmpPath, ignore_errors=False)
64 os.mkdir(tmpPath)
66 archive.extractall(tmpPath)
69 extractedEntries = os.listdir(tmpPath)
70 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
73 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
82 shutil.rmtree(tmpPath, ignore_errors=True)
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp81 SkPath tmpPath; local
84 tmpPath = origPath;
85 pathPtr = &tmpPath;
95 bool fill = paintFlatten.getFillPath(*pathPtr, &tmpPath);
106 tmpPath.transform(*d.fMatrix);
112 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp81 SkPath tmpPath; local
84 tmpPath = origPath;
85 pathPtr = &tmpPath;
95 bool fill = paintFlatten.getFillPath(*pathPtr, &tmpPath);
106 tmpPath.transform(*d.fMatrix);
112 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/deqp/scripts/
H A Dmake_release.py311 tmpPath = getTempDir()
313 dstBasePath = os.path.join(tmpPath, releaseName)
314 tmpBasePath = os.path.join(tmpPath, releaseName + "-tmp")
318 print "Creating release %s to %s" % (releaseName, tmpPath)
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp653 SkPath tmpPath; local
655 origPath.transform(viewMatrix, &tmpPath);
656 path = &tmpPath;
H A DSkGpuDevice.cpp715 SkTLazy<SkPath> tmpPath; local
722 result = tmpPath.init();
747 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
756 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
H A DGrContext.cpp1287 SkTLazy<SkPath> tmpPath; local
1296 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1297 pathPtr = tmpPath.get();
/external/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp646 SkPath tmpPath; local
648 origPath.transform(viewMatrix, &tmpPath);
649 path = &tmpPath;
H A DGrContext.cpp1269 SkTLazy<SkPath> tmpPath; local
1278 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1279 pathPtr = tmpPath.get();
H A DSkGpuDevice.cpp746 SkTLazy<SkPath> tmpPath; local
753 result = tmpPath.init();
778 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
787 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
/external/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp1011 SkPath tmpPath; local
1021 result = &tmpPath;
1066 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr);
1067 pathPtr = &tmpPath;
1082 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2255 SkPath tmpPath; local
2257 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2258 srcPtr = &tmpPath;
2262 if (srcPtr == &tmpPath) {
2264 // As it is, we want to save making a deep-copy from tmpPath -> dst
2265 // since we know we're just going to delete tmpPath when we return,
2267 dst->swap(tmpPath);
/external/skia/src/core/
H A DSkDraw.cpp1005 SkPath tmpPath; local
1015 result = &tmpPath;
1060 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr);
1061 pathPtr = &tmpPath;
1076 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2324 SkPath tmpPath; local
2326 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2327 srcPtr = &tmpPath;
2331 if (srcPtr == &tmpPath) {
2333 // As it is, we want to save making a deep-copy from tmpPath -> dst
2334 // since we know we're just going to delete tmpPath when we return,
2336 dst->swap(tmpPath);

Completed in 298 milliseconds