Searched refs:tmpPath (Results 1 - 7 of 7) 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/deqp/scripts/
H A 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/skia/src/gpu/
H A DGrContext.cpp1308 SkTLazy<SkPath> tmpPath; local
1318 if (!strokeInfo.applyDash(tmpPath.init(), &dashlessStrokeInfo, *pathPtr)) {
1321 pathPtr = tmpPath.get();
1334 if (!tmpPath.isValid()) {
1335 tmpPath.init();
1339 if (!strokeRec->applyToPath(tmpPath.get(), *pathPtr)) {
1342 pathPtr = tmpPath.get();
H A DSkGpuDevice.cpp781 SkTLazy<SkPath> tmpPath; local
798 result = tmpPath.init();
827 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
843 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
/external/pdfium/core/src/fxge/skia/
H A Dfx_skia_device.cpp73 SkPath tmpPath; local
98 doFill = paint->getFillPath(*pathPtr, &tmpPath, &cullRect);
99 pathPtr = &tmpPath;
/external/skia/src/core/
H A DSkDraw.cpp1026 SkPath tmpPath; local
1029 tmpPath.setIsVolatile(true);
1037 result = &tmpPath;
1082 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr,
1084 pathPtr = &tmpPath;
1099 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2055 SkPath tmpPath; local
2057 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2058 srcPtr = &tmpPath;
2062 if (srcPtr == &tmpPath) {
2064 // As it is, we want to save making a deep-copy from tmpPath -> dst
2065 // since we know we're just going to delete tmpPath when we return,
2067 dst->swap(tmpPath);

Completed in 851 milliseconds